QuestenaPractice that shows what to review next
Question 55

What does an empty array return from some when given any ordinary predicate callback?

  1. true
  2. falseCorrect answer
  3. undefined
  4. It skips returning a value

Explanation

With no elements, there cannot be an element whose callback result is truthy, so some returns false. Returning true would confuse the existential rule of some with the vacuous all-elements rule used by every.

Continue with this test

Start practice
Question 55: What does an empty array return from some when given any… · JavaScript Fundamentals · Questena