Strings in JavaScript (OCR A-Level Computer Science): Quizzes
📚Quizzes
Practise the questions
7 questions from this quiz
ShowHide
Practise the questions
7 questions from this quiz
What are strings in JavaScript?
What are strings in JavaScript?
Sequences of characters used for text
What property shows the number of characters in a string?
What property shows the number of characters in a string?
.length
What does "JavaScript".length output?
What does "JavaScript".length output?
10
What does the .toUpperCase() method do?
What does the .toUpperCase() method do?
Converts all letters to uppercase
What does "JavaScript".toUpperCase() output?
What does "JavaScript".toUpperCase() output?
"JAVASCRIPT"
What is a common mistake when comparing strings?
What is a common mistake when comparing strings?
Using == instead of ===
Which operator should always be used for strict equality?
Which operator should always be used for strict equality?
===
