In a for...of loop, using let allows each iteration to have its own _________ scope.
- Global
- Block
- Local
- Function
The let keyword creates a block-scoped variable, so each iteration in a for...of loop has its own block scope. This helps prevent unintended variable hoisting and makes the code more predictable.
Loading...
Related Quiz
- When building a new object that combines properties from several sources, how can the spread operator be used effectively?
- Can you use destructuring assignment to assign default values to variables?
- A pure function always returns the same output given the same _________.
- In what way does the super keyword facilitate inheritance in ES6 classes?
- Can await be used inside a regular (non-async) function?