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