How does a for...of loop differ from a for...in loop in terms of iteration?
- for...of is used for arrays and iterable objects
- for...in is used for arrays and iterable objects
- for...of iterates over property values
- for...in iterates over property names
The for...of loop is designed specifically for iterating over values of iterable objects, such as arrays, while the for...in loop iterates over property names and is not limited to iterable objects.
Loading...
Related Quiz
- When an async function throws an error and it is not caught, it results in a rejected __________.
- To optimize tree shaking, developers should avoid _______ side effects in their module code.
- Is it possible to create a shared Symbol that is accessible across different parts of your code?
- How does the lack of enumeration in WeakMap and WeakSet impact their use cases?
- What is the difference between defining methods in ES5 and ES6 object literals?