转换方法:1、使用parseInt()函数,语法“parseInt(浮点数)”;2、利用位运算符“|”,语法“0 | 浮点数”;3、利用位运算符“^”,语法“0 ^ 浮点数”;4、利用位运算符“~~”,语法“~~浮点数”。
本教程操作环境:windows7系统、javascript1.8.5版、Dell G3电脑。
javascript将浮点数转为整数的方法
方法1:使用parseInt()函数
parseInt(13.5); parseInt(22.5);
方法2:利用位运算符“|”
console.log(0 | 123.45)
方法3:利用位运算符“^”
console.log(0 ^ 123.45)
方法4:利用位运算符“~~”
console.log(~~ 123.45); console.log(~~ 123.4545);
【推荐学习:javascript高级教程】