What is the correct way to compare two strings in JavaScript for equality?
A). string1 == string2
B). string1.compare(string2)
C). string1.equals(string2)
D). string1 === string2
What does the .substring() method do in JavaScript?
A). Extracts characters between two indices
B). Trims whitespace from the beginning
C). Converts string to an array
D). Compares two strings
Which operator can be used to combine a string with a number in JavaScript?
A). +
B). -
C). *
D). /
What is the result of 'Hello'.substring(0, 3) in JavaScript?
A). 'Hell'
B). 'Hello'
C). 'o'
D). 'llo'
What does the + operator do with strings?
A). Concatenates strings
B). Compares strings
C). Trims strings
D). Converts strings to uppercase
What is the result of 'apple'.charAt(2) in JavaScript?
A). 'p'
B). 'l'
C). 'a'
D). 'pp'
How do you get the index of the first occurrence of a specified substring in a string?
A). string.indexOf(substring)
B). string.index(substring)
C). substring.positionIn(string)
D). string.search(substring)
How do you concatenate two strings in JavaScript?
A). string1.concat(string2)
B). string1 + string2
C). string1.join(string2)
D). string1.combine(string2)
Which method can you use to check if a string includes a specific substring in JavaScript?
A). .includes()
B). .contains()
C). .hasSubstring()
D). .indexOf()
How do you extract parts of a string and join them together in JavaScript?
A). string.slice(start, end)
B). string.extract(start, end)
C). string.split(start, end)
D). string.join(start, end)