标签: javascript math
在JavaScript中,如何将3.14159转换为3.14。如果值是3.14659,我预计它是3.15。
答案 0 :(得分:1)
value = 3.14159; Math.round(value * 100) / 100;