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.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *