Math.sign( x ) Math.abs( x ) Math.ceil ( 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.abs( x ) Math.ceil ( x )