Math.abs
Math.abs
Math.abs(x)
函数返回指定数字 “x“ 的绝对值。如下:
Math.abs(x)= | x | = {xifx> 00ifx = 0-xifx <0 {\ mathtt {\ operatorname {Math.abs}(x)}} = {| x |} = \ begin {cases} x &\ text {if} \ quad x \ geq 0 \ -x&\ text {if} \ quad x <0 \ end {cases}
Syntax
Math.abs(x)
参数
x
一个数值
返回值
给定数字的绝对值。
描述
由于 Math.abs()是Math
中的一个静态方法,你应该通过Math.abs()调用。
(Math 不是构造器)
示例
Math.abs()函数的行为
传入一个非数字形式的字符串或者 undefined/empty 变量,将返回NaN
。传入 null 将返回 0。
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 | Status | Comment |
---|---|---|
ECMAScript 1st Edition (ECMA-262) | Standard | Initial definition. Implemented in JavaScript 1.0. |
ECMAScript 5.1 (ECMA-262)The definition of 'Math.abs' in that specification. | Standard | |
ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'Math.abs' in that specification. | Standard | |
ECMAScript Latest Draft (ECMA-262)The definition of 'Math.abs' in that specification. | Living Standard | |
浏览器兼容性
Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic Support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Feature | Android | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
---|---|---|---|---|---|---|---|
Basic Support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |