MCQ
Single Best Answer
Difficult
QWhat is the result of the following code in JavaScript?
const str = 'Hello, world!';
console.log(str.charAt(0));
ID: #4916
Javascript String MCQ
274 views
Question Info
#4916Q ID
DifficultDifficulty
Javascript String MCQTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer: Option A
Explanation
The charAt() method returns the character at a specified index in a string.
In this case, the index is 0, so the method returns the first character of the string, which is 'H'.
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic