站长资讯网
最全最丰富的资讯网站

javascript怎么将浮点数转为整数

转换方法:1、使用parseInt()函数,语法“parseInt(浮点数)”;2、利用位运算符“|”,语法“0 | 浮点数”;3、利用位运算符“^”,语法“0 ^ 浮点数”;4、利用位运算符“~~”,语法“~~浮点数”。

javascript怎么将浮点数转为整数

本教程操作环境:windows7系统、javascript1.8.5版、Dell G3电脑。

javascript将浮点数转为整数的方法

方法1:使用parseInt()函数

parseInt(13.5); parseInt(22.5);

javascript怎么将浮点数转为整数

方法2:利用位运算符“|”

console.log(0 | 123.45)

javascript怎么将浮点数转为整数

方法3:利用位运算符“^”

console.log(0 ^ 123.45)

javascript怎么将浮点数转为整数

方法4:利用位运算符“~~”

console.log(~~ 123.45); console.log(~~ 123.4545);

javascript怎么将浮点数转为整数

【推荐学习:javascript高级教程】

赞(0)
分享到: 更多 (0)
网站地图   沪ICP备18035694号-2    沪公网安备31011702889846号