JS: String.prototype.trimStart
(new in ECMAScript 2019)
str.trimStart()-
same as
str.trimLeft() str.trimLeft()-
Return a new string with
Whitespaces
on the left removed.
console.log(" t".trimStart() === "t"); console.log(" t".trimLeft() === "t");