Math.sign()

Math.sign() 静态方法返回 1 或 -1,指示作为参数传递的数字的符号。如果输入为 0 或-0,则按原样返回。

¥The Math.sign() static method returns 1 or -1, indicating the sign of the number passed as argument. If the input is 0 or -0, it will be returned as-is.

Try it

语法

¥Syntax

js
Math.sign(x)

参数

¥Parameters

x

一个号码。

返回值

¥Return value

代表 x 符号的数字:

¥A number representing the sign of x:

  • 如果 x 为正,则返回 1
  • 如果 x 为负数,则返回 -1
  • 如果 x 为正零,则返回 0
  • 如果 x 为负零,则返回 -0
  • 否则,返回 NaN

描述

¥Description

因为 sign()Math 的静态方法,所以你始终将其用作 Math.sign(),而不是用作你创建的 Math 对象的方法(Math 不是构造函数)。

¥Because sign() is a static method of Math, you always use it as Math.sign(), rather than as a method of a Math object you created (Math is not a constructor).

示例

¥Examples

使用 Math.sign()

¥Using 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

规范

Specification
ECMAScript Language Specification
# sec-math.sign

¥Specifications

浏览器兼容性

BCD tables only load in the browser

¥Browser compatibility

也可以看看