Can you use const within a for...of loop to declare a variable for each iteration?
- Yes
- No
- It depends
- Not applicable
In a for...of loop, the variable declared using const cannot be reassigned in each iteration. The loop variable retains its value throughout the loop, making it unsuitable for situations where reassignment is needed for each iteration.
Loading...
Related Quiz
- In a project where a class needs to incorporate event-handling, logging, and validation behaviors, how would mixins and composition be used?
- Can a class in ES6 contain constructor functions?
- What is the base case in a recursive function?
- What is the syntax difference between method definitions in ES6 classes and traditional function expressions?
- An async function always returns a __________.