TrimStart trims any whitespace or the selected characters from the beginning of the string
string(string): input string[chars](string): characters to remove from beginning of string *(default ' ')*
(string): string with the characters removed from beginning
const result = strings.trimStart('-_-abc-_-', '_-');
console.log(result);
> 'abc-_-'