javascript小数相乘 发表于 2016-11-03 | 分类于 算法 题目描述求 a 和 b 相乘的值,a 和 b 可能是小数,需要注意结果的精度问题 123function multiply(a, b) { return Math.round((a*b*100000))/100000;}