获取两位数乘后都能为整数的数字
getCommonPow(0.1, 0.11); // 100getCommonPow(1.123e2, 0.11); // 100getCommonPow(1e2, 10); // 1getCommonPow(1e-2, 10); // 100getCommonPow(10.1, 1.00001); // 100000 复制
getCommonPow(0.1, 0.11); // 100getCommonPow(1.123e2, 0.11); // 100getCommonPow(1e2, 10); // 1getCommonPow(1e-2, 10); // 100getCommonPow(10.1, 1.00001); // 100000
获取两位数乘后都能为整数的数字