How can you access both the index and value of an array element in a for...of loop?
- for (let [index, value] of array.entries())
- for (let {index, value} of array.entries())
- for (let (index, value) of array.entries())
- for (let index, value of array.entries())
In a for...of loop, you can use the entries() method on the array to access both the index and value. The returned value is an array where the first element is the index and the second element is the value. This destructuring assignment allows easy access to both index and value.
Loading...
Related Quiz
- Recursive functions can be used effectively for tasks such as __________ traversal in data structures.
- What happens if an error is thrown inside a .then() block in Promise chaining?
- Which of the following best describes the purpose of functional composition?
- What is the base case in a recursive function?
- In ES6, what is the difference between declaring methods in a class and in an object literal?