Changing case Flashcards
1
Q
Type the characters that are missing from this code. var allLower = userInput.toLowerCase;
A
The correct answer:
()
The statement should be coded:
var allLower = userInput.toLowerCase()
2
Q
Type the character that is missing from this code. var allLower = userInput toLowerCase();
A
The statement should be coded: var allLower = userInput.toLowerCase();