A for...of loop is best suited for iterating over ________ data structures, like arrays and strings.

  • asynchronous
  • asymmetric
  • iterable
  • immutable
The for...of loop is designed for iterating over iterable data structures, such as arrays and strings. It simplifies the process of iterating over the values without the need for index management.
Add your answer
Loading...

Leave a comment

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