To iterate over an array's elements using a for...of loop, write for (const element _______ array).
- in
- of
- from
- within
In JavaScript, the correct syntax for iterating over an array using a for...of loop is for (const element of array). The of keyword is used to loop over the values in an iterable object like an array.
Loading...
Related Quiz
- What happens if you try to redeclare a variable declared with let in the same scope?
- To export multiple features from a single module, use export { feature1, feature2 as _______ };.
- Can you use const within a for...of loop to declare a variable for each iteration?
- The _______ operator can be used to unpack the values from an iterable into individual elements.
- How does the temporal dead zone affect variables declared with let and const?