titangene / hexo-blog

Hexo blog source code
https://titangene.github.io/
0 stars 1 forks source link

JavaScript 之旅 (5):String method - padStart & padEnd | Titangene Blog #50

Open titangene opened 4 years ago

titangene commented 4 years ago

https://titangene.github.io/article/javascript-string-padstart-padend.html

在字串的前綴或後綴補字元,是字串處理常見的需求,過去要自行處理,終於在 ES2017 (ES8) 新增了 String.prototype.padStart() 和 String.prototype.padEnd(),解決常見的需求!本篇來介紹它們,以及在 ECMAScript spec 是如何定義的,並附上 polyfill。