js按照规定的长度给指定的数字前面补0
function prefixIntrger(num,length){
return (Array(length).join(‘0’)+num).slice(-length);
}
js按照规定的长度给指定的数字前面补0
function prefixIntrger(num,length){
return (Array(length).join(‘0’)+num).slice(-length);
}
本文标题:js按照长度给指定的数字前面补0
本文链接:https://www.haomeiwen.com/subject/orimeftx.html
网友评论