let arr = [125, 52, 85, 526, 658, 738]
console.log(Math.ceil(Math.max(...arr) / 10) * 10); // 740
console.log(Math.ceil(Math.max(...arr) / 50) * 50); // 750
console.log(Math.ceil(Math.max(...arr) / 100) * 100); // 800
根据需求选择向上取多少位数,如图所示