Math.ceil + Math.max 找出数组最大值并向上取整十位数或者百位数

发布时间:2024年01月17日

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

根据需求选择向上取多少位数,如图所示

文章来源:https://blog.csdn.net/m0_48968874/article/details/135617728
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。