QuestenaPractice that shows what to review next
Question 51

What does find return when no array element makes its callback truthy?

  1. -1
  2. an empty array
  3. undefinedCorrect answer
  4. false

Explanation

find returns undefined when no element qualifies, rather than returning a sentinel index. A qualifying element may itself contain undefined, so the return value alone cannot distinguish those situations.

Continue with this test

Start practice
Question 51: What does find return when no array element makes its… · JavaScript Fundamentals · Questena