美文网首页
向上取数

向上取数

作者: 爱看小说的叶子 | 来源:发表于2020-08-04 14:09 被阅读0次

    取两个数组中的最大值,然后将向上取整,如14000,变成20000.

    getYMax(ay1, ay2){
            let ay = ay1.concat(ay2)
            let max =  Math.floor(Math.max(...ay))
            // let max = Math.floor(ay[ay.length-1])
            let value  = 1
            let length = max.toString().length -1
            for(let i = 0; i < length; i++){
              value = value * 10
            }
            let showMax =  Math.ceil(max/value) * value
            return  showMax
          },
    

    相关文章

      网友评论

          本文标题:向上取数

          本文链接:https://www.haomeiwen.com/subject/mjkwrktx.html