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.
Loading...
Related Quiz
- In ES6, how can you define a method inside an object literal?
- What is the significance of weak references in WeakMap and WeakSet with regards to memory management?
- In what scenarios is it not recommended to use arrow functions in JavaScript?
- How does the spread operator assist in merging and overriding properties of multiple objects?
- How does the call stack in JavaScript relate to the concept of 'blocking'?