QuestenaPractice that shows what to review next
Question 39

An array has no element at index 8. What does reading that index return?

  1. RangeError
  2. null
  3. undefinedCorrect answer
  4. the nearest element

Explanation

Reading an array position with no element returns undefined rather than throwing. That result alone cannot prove the position is absent, because a present element could itself contain undefined.

Continue with this test

Start practice
Question 39: An array has no element at index 8. What does reading that… · JavaScript Fundamentals · Questena