List of questions
Related questions
Question 48 - Certified JavaScript Developer I discussion
Refer to the code below?
Let searchString = ' look for this ';
Which two options remove the whitespace from the beginning of searchString?
Choose 2 answers
A.
searchString.trimEnd();
B.
searchString.trimStart();
C.
trimStart(searchString);
D.
searchString.replace(/*\s\s*/, '');
Your answer:
0 comments
Sorted by
Leave a comment first