let a = 3.345 console.log(a.toFixed(2)) // 3.35为什么下面的结果是错的?没有进位?et a = 0.345 console,log(a.toFixed(2)) // 0.34 查看完整描述