正文

JS中保留两位小数的方法有很多种,以下是一些常见的做法: 1. 使用 `toFixed()` 方法: ```javascript let num = 3.14159; let result = num.toFixed(2); console.log(result); // 输出: 3.14 ``` 2. 使用 `Math.round()`