题解 | #乘法#
乘法
http://www.nowcoder.com/practice/6429776e4630435cbc3eeb36bdf41f83
function multiply(a, b) {
// 首先截取b的小数点后面的数字长度,截取自带转换为字符串
let d = b.toString().split('.')[1]
// 然后将两个值进行乘法计算
let c = a * b
// 返回计算之后的值,保留小数。传进来几位返回几位
return c.toFixed(d.length)
}