在JavaScript中,可以使用Math.round()
函數來實現四舍五入。這個函數會將一個數值四舍五入到最接近的整數。
下面是一個示例:
let num = 3.7;
let roundedNum = Math.round(num);
console.log(roundedNum); // 輸出4
在這個示例中,Math.round()
函數將3.7四舍五入到最接近的整數4。
如果想要保留小數點后幾位的四舍五入,可以使用toFixed()
方法。這個方法會將一個數值轉換為字符串,并四舍五入到指定的小數位數。
下面是一個示例:
let num = 3.14159;
let roundedNum = num.toFixed(2);
console.log(roundedNum); // 輸出3.14
在這個示例中,toFixed()
方法將3.14159四舍五入到小數點后兩位,并返回字符串"3.14"。