本篇介紹 ES2019 (ES10) 提供的 String method trimStart()
和 trimEnd()
。
trim 是用來刪除頭尾多餘的字元,常見的多餘字元就是 space。
在 ES5 提供了 String.prototype.trim()
:
let inputValue = ' text ';
console.log(inputValue.trim());
// "text"
trimStart()
和 trimEnd()
let inputValue = ' text ';
console.log(inputValue.trimStart());
// "text "
console.log(inputValue.trimEnd());
// " text"
String.prototype.{trimStart,trimEnd}
| Exploring ES2018 and ES2019