Number.prototype.signum = function() {
  return this>0 ? 1 : (this<0 ? -1 : 0);
} 
