M
Q. What will happen if the body of a for/in loop deletes a property that has not yet been enumerated?
- Correct Answer - Option(C)
- Views: 82
- Filed under category JavaScript
M
If the body of a for/in loop deletes a property that has not yet been enumerated, that property will not be enumerated. If the body of the loop defines new properties on the object, those properties will generally not be enumerated.
You must be Logged in to update hint/solution
Discusssion
Login to discuss.