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 275 views
Question Info
#4916Q ID
DifficultDifficulty
Javascript String MCQTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A H
  • B e
  • C l
  • D !
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'.

Share This Question

Challenge a friend or share with your study group.