Removes whitespace from the beginning of a string.
string.trimStart()
A new string with whitespace removed from the start
const str = ' Hello'; console.log(str.trimStart());