25.
Which of the following methods is used to find the length of a string in JavaScript?
size
count()
length
findLength()
Correct: C
The correct method to find the length of a string in JavaScript is to use the length property. The length property returns the number of characters in a string.