QuestenaPractice that shows what to review next
Question 30

Given word = "cat", what does word[9] return?

  1. undefinedCorrect answer
  2. an empty string
  3. the final character
  4. RangeError

Explanation

Bracket indexing beyond the available code-unit positions returns undefined. An empty string is the result associated with out-of-range charAt, so transferring that behavior to brackets selects the closest but incorrect alternative.

Continue with this test

Start practice
Question 30: Given word = "cat", what does word[9] return? · JavaScript Fundamentals · Questena