JavaScript数学,舍入到小数点后两位
我有以下JavaScript语法:
var discount = Math.round(100 - (price / listprice) * 100);
这可以达到整数。如何以小数点后两位返回结果?
相关分类