其他分享
首页 > 其他分享> > 字符串不足自动补零

字符串不足自动补零

作者:互联网

在ES6中新增的padStart()方法和padEnd()方法

let str1 = 'a';
console.log(str1.padStart(3, '0'));
console.log(str1.padEnd(3, '0'));
console.log(str1);

输出结果如下:

标签:console,log,padEnd,str1,padStart,自动,字符串,补零
来源: https://www.cnblogs.com/echo42/p/15795156.html