Math.abs()

Math.abs() 静态方法返回数字的绝对值。

¥The Math.abs() static method returns the absolute value of a number.

Try it

语法

¥Syntax

js
Math.abs(x)

参数

¥Parameters

x

一个号码。

返回值

¥Return value

x 的绝对值。如果 x 为负数(包括 -0),则返回 -x。否则,返回 x。因此,结果始终是正数或 0

¥The absolute value of x. If x is negative (including -0), returns -x. Otherwise, returns x. The result is therefore always a positive number or 0.

描述

¥Description

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

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

示例

¥Examples

使用 Math.abs()

¥Using Math.abs()

js
Math.abs(-Infinity); // Infinity
Math.abs(-1); // 1
Math.abs(-0); // 0
Math.abs(0); // 0
Math.abs(1); // 1
Math.abs(Infinity); // Infinity

参数强制

¥Coercion of parameter

Math.abs() 将其参数强制为数字.不可强制值将变为 NaN,使 Math.abs() 也返回 NaN

¥Math.abs() coerces its parameter to a number. Non-coercible values will become NaN, making Math.abs() also return NaN.

js
Math.abs("-1"); // 1
Math.abs(-2); // 2
Math.abs(null); // 0
Math.abs(""); // 0
Math.abs([]); // 0
Math.abs([2]); // 2
Math.abs([1, 2]); // NaN
Math.abs({}); // NaN
Math.abs("string"); // NaN
Math.abs(); // NaN

规范

Specification
ECMAScript Language Specification
# sec-math.abs

¥Specifications

浏览器兼容性

BCD tables only load in the browser

¥Browser compatibility

也可以看看