How do you trim whitespace from the beginning and end of a string?
A). trimStart()
B). trim()
C). trimWhitespace()
D). strip()
Which method can be used to search for a specified value in a string and return its position?
A). search()
B). find()
C). indexOf()
D). locate()
What is the result of '5' + 2 in JavaScript?
A). 52
B). 7
C). 5
D). Error
How do you check if a string ends with a specific substring?
A). endsWith()
B). isEnd()
C). hasSuffix()
D). ends()
What does the split() method do?
A). Splits a string into characters
B). Splits a string into an array of substrings
C). Divides a string into two parts
D). Cuts a string in half
How do you extract a part of a string in JavaScript?
A). slice()
B). substring()
C). substr()
D). All of the above
What does the padStart() method do?
A). Adds padding to the beginning of a string
B). Adds padding to the end of a string
C). Adds padding to both ends of a string
D). Removes padding from the beginning of a string
How do you create a multi-line string in JavaScript?
A). Use single quotes
B). Use double quotes
C). Use backticks
D). Use escape characters
What is the result of 'Hello'.concat(' ', 'World')?
A). HelloWorld
B). Hello World
C). Hello, World
D). HelloWorld
How do you check if a string starts with a specific substring?
A). beginsWith()
B). startsWith()
C). isStart()
D). hasPrefix()