1、声明数组
let arr = [125, 52, 85, 526, 658, 738]
2、找出数组最大值并向上取整十位数
console.log(Math.ceil(Math.max(...arr) / 10) * 10); // 740
console.log(Math.ceil(Math.max(...arr) / 50) * 50); // 750
3、找出数组最大值并向上取整百位数
console.log(Math.ceil(Math.max(...arr) / 100) * 100); // 800
tips
根据需求选择向上取多少位数,如图所示