返回x的符号。
Math.sign(x) - 语法
Math.sign( x ) ;
- x - 代表数字
Math.sign(x) - 返回值
如果x为负,则返回-1。如果x为正则为1,如果x为0,则为0
Math.sign(x) - 示例
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
参考链接
https://www.learnfk.com/es6/es6-math-sign.html
标签:console,log,6.77,无涯,sign,---,Math From: https://blog.51cto.com/u_14033984/9631005