ES6 Math.abs( x )

此方法返回数字的绝对值。

语法

Math.abs( x ) ;

参数

  • X - 代表一个数字

返回值

返回数字的绝对值

console.log("---Math.abs()---")
console.log("Math.abs(-5.5) : "+Math.abs(-5.5)) 
console.log("Math.abs(5.5) : "+Math.abs(5.5))

输出

---Math.abs()---
Math.abs(-5.5) : 5.5
Math.abs(5.5) : 5.5

返回x的符号。语法Math.sign( x ) ;参数X - 代表一个数字返回值如果x为负,则返回-1; 如果x为正,则为1;如果x为0,则为0例console.log("---Math.sign()- ...