QuestenaPractice that shows what to review next
Question 102

Which description of for...in over an ordinary object is accurate when no mutation occurs during enumeration?

  1. It yields only the object's own Symbol values
  2. It yields enumerable string keys and can include inherited onesCorrect answer
  3. It yields property values but never keys
  4. It works only when the object is iterable

Explanation

For...in yields enumerable string property keys and may include eligible properties inherited through the prototype chain. It does not directly yield property values, so describing it as the object equivalent of array value iteration is incorrect.

Continue with this test

Start practice
Question 102: Which description of for...in over an ordinary object is… · JavaScript Fundamentals · Questena