• 获取两位数乘后都能为整数的数字

    参数

    • a: number
    • b: number

    返回 number

    getCommonPow(0.1, 0.11); // 100
    getCommonPow(1.123e2, 0.11); // 100
    getCommonPow(1e2, 10); // 1
    getCommonPow(1e-2, 10); // 100
    getCommonPow(10.1, 1.00001); // 100000