QuestenaPractice that shows what to review next
Question 21

Which ordinary objects are truthy in a boolean context? Select all that apply.

  1. An empty arrayCorrect answer
  2. The empty string
  3. An empty ordinary objectCorrect answer
  4. The value null

Explanation

Both an empty array and a separately created empty ordinary object are truthy because ordinary objects do not become falsy when they contain no elements or properties. Treating an empty container like an empty string incorrectly transfers a primitive-string rule to objects.

Continue with this test

Start practice
Question 21: Which ordinary objects are truthy in a boolean context?… · JavaScript Fundamentals · Questena