ES6 Math.sign( x )
返回x的符号。
语法
Math.sign( x ) ;
参数
- X - 代表一个数字
返回值
如果x为负,则返回-1; 如果x为正,则为1;如果x为0,则为0
例
console.log("---Math.sign()---")
console.log("Math.sign(-10.5) : "+Math.sign(-10.5))
console.log("Math.sign(6.77) : "+Math.sign(6.77))
输出
---Math.sign()---
Math.sign(-10.5) : -1
Math.sign(6.77) : 1
此方法返回大于或等于数字的最小整数。语法Math.ceil ( x ) ;参数X - 代表一个数字例console.log("---Math.ceil()---")console.log("Math. ...