toFixed()方法
var price = 324.12;
var price1 = 324.16;
var price2 = -324.19;
/**
* toFixed()
* 方法说明
* 1、小数点后的位数。必须在0 - 20范围内,包括在内。
* 2、返回值 距离整数近的靠近
* 参数说明
* 1、fractionDigits :小数点位数
**/
console.log(price.toFixed(1)); // 324.1
console.log(price.toFixed(3)); // 324.120
console.log(price1.toFixed(1)); // 324.2
console.log(price2.toFixed(1)); // 距离整数近的靠近