- A The property will be stored in a cache
- B The loop will not run
- C That property will not be enumerated
- D The property will be enumerated
- Share this MCQ
Answer:
C
Share this MCQ
If a property on an object is deleted during a for/in loop before it is enumerated, it will not be enumerated.
Additionally, properties that are defined within the body of the loop will typically not be included in the enumeration.
Share this MCQ