Math.sign()

Math.sign() 函数返回一个数字的符号,指示数字是正数,负数还是零。

语法

Math.sign(x);

参数

x

任意数字。

描述

因为 signMath 的一个静态方法,所以你应该使用 Math.sign(),而不是作为你创建的一个 Math 对象的一种方法(Math 不是一个构造函数)。

而不是作为您创建的 Math 对象的一种方法(Math 不是构造函数)。

此函数共有 5 种返回值,分别是 1, -1, 0, -0, NaN. 代表的各是正数,负数,正零,负零,NaN

传入该函数的参数会被隐式转换成数字类型。

示例

使用 Math.sign()

js

Math.sign(3);     //  1
Math.sign(-3);    // -1
Math.sign("-3");  // -1
Math.sign(0);     //  0
Math.sign(-0);    // -0
Math.sign(NaN);   // NaN
Math.sign("foo"); // NaN
Math.sign();      // NaN

Polyfill

js

function sign(x) {
    x = +x ;// convert to a number
    if (x === 0 || isNaN(x))
        return x;
    return x > 0 ? 1 : -1;
}
if (!Math.sign) {
  Math.sign = function(x) {
    // If x is NaN, the result is NaN.
    // If x is -0, the result is -0.
    // If x is +0, the result is +0.
    // If x is negative and not -0, the result is -1.
    // If x is positive and not +0, the result is +1.
    x = +x; // convert to a number
    if (x === 0 || isNaN(x)) {
      return Number(x);
    }
    return x > 0 ? 1 : -1;
  };
}

规范

Specification
ECMAScript Language Specification
# sec-math.sign

浏览器兼容性

BCD tables only load in the browser

相关链接