Refer to the code below?
Let searchString = ‘ look for this ’;
Which two options remove the whitespace from the beginning of searchString?
Choose 2 answers
searchString.trimEnd();
searchString.trimStart();
trimStart(searchString);
searchString.replace(/*\s\s*/, ‘’);
Submit