Which description of for...in over an ordinary object is accurate when no mutation occurs during enumeration?
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.