js按固定位数填充字符串

const str="abcd"

str.padStart(8,0)

console.log(str)

结果为 0000abcd

 

你可能感兴趣的:(javascript)