How would you use a for...of loop to iterate over a string?

  • for (let char in myString)
  • for (let char of myString)
  • for (let i = 0; i < myString.length; i++)
  • for (let i = myString.length - 1; i >= 0; i--)
The correct syntax to iterate over a string using a for...of loop is for (let char of myString). This loop simplifies the process of iterating over the characters of a string without the need for an index.
Add your answer
Loading...

Leave a comment

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