The __________ loop is used to iterate over the elements of an iterable object in JavaScript.
- for...in
- while
- do...while
- for...of
The for...of loop is specifically designed for iterating over the values of an iterable object, providing a concise and readable syntax for iteration. It simplifies the process of iterating over arrays, strings, maps, sets, and other iterable objects.
Loading...
Related Quiz
- If you are implementing a function that will be used as a callback, which might benefit from lexical scoping of this, what type of function would you choose?
- What is a common way to handle errors in async/await functions?
- What happens if you try to redeclare a variable declared with let in the same scope?
- Consider a function designed to format a date. How would you use default parameters to provide flexibility in the format?
- To iterate over an array's elements using a for...of loop, write for (const element _______ array).