标签: javascript calculator
我需要一种方法,将0.9转换为0,将0.1转换为0,在JavaScript中。
0.9
0
0.1
赞math.round(0.9)
math.round(0.9)
但是math.round给了我1,我希望0
math.round
1
答案 0 :(得分:3)
使用Math.floor,它返回小于或等于给定数字的最大整数。
Math.floor
console.log(Math.floor(0.1)); console.log(Math.floor(0.9));