在JavaScript中,如何根据数字将数字舍入到最接近的100/1000?

问题描述 投票:8回答:5

我有一个可以是2位数的数字,如67,24,82或3位数字,如556,955,865或4位数,依此类推。如何根据数字将数字四舍五入到最接近的n + 1位?

例:

roundup(87) => 100,
roundup(776) => 1000,
roudnup(2333) => 10000

等等。

javascript math max rounding roundup
5个回答
11
投票

您可以取十的对数并将值取整以获得该值。

function roundup(v) {
    return Math.pow(10, Math.ceil(Math.log10(v)));
}

console.log(roundup(87));   //   100
console.log(roundup(776));  //  1000
console.log(roundup(2333)); // 10000

对于负数,您可以通过将检查结果作为因子或采取负数来保存符号。那么绝对值是必要的,因为对数仅适用于正数。

function roundup(v) {
    return (v >= 0 || -1) * Math.pow(10, 1 + Math.floor(Math.log10(Math.abs(v))));
}

console.log(roundup(87));    //    100
console.log(roundup(-87));   //   -100
console.log(roundup(776));   //   1000
console.log(roundup(-776));  //  -1000
console.log(roundup(2333));  //  10000
console.log(roundup(-2333)); // -10000

7
投票
 const roundup = n => 10 ** ("" + n).length

只需使用字符数。


4
投票

您可以检查数字中有多少位数并使用取幂:

const roundup = num => 10 ** String(num).length;
console.log(roundup(87));
console.log(roundup(776));
console.log(roundup(2333));

4
投票

您可以使用String#repeat结合Number#toString来实现:

const roundUp = number => +('1'+'0'.repeat(number.toString().length));

console.log(roundUp(30));
console.log(roundUp(300));
console.log(roundUp(3000));

3
投票

//Math.pow(10,(value+"").length)   


console.log(Math.pow(10,(525+"").length))
console.log(Math.pow(10,(5255+"").length))

我想出了另一个不需要创建新功能的解决方案

© www.soinside.com 2019 - 2024. All rights reserved.