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

Leave a comment

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