美文网首页
js按照长度给指定的数字前面补0

js按照长度给指定的数字前面补0

作者: Web前端大世界 | 来源:发表于2018-06-15 17:49 被阅读0次

    js按照规定的长度给指定的数字前面补0
    function prefixIntrger(num,length){
    return (Array(length).join(‘0’)+num).slice(-length);
    }

    相关文章

      网友评论

          本文标题:js按照长度给指定的数字前面补0

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