Iterators enable lazy evaluation, allowing elements to be processed one at a time, as opposed to ________ evaluation.
- synchronous
- asynchronous
- parallel
- concurrent
Iterators in JavaScript enable lazy evaluation, meaning elements are processed one at a time on demand, in contrast to synchronous evaluation, where all elements are processed at once. This supports more efficient resource utilization.
Loading...
Related Quiz
- ES6 Modules use the import and export keywords, whereas CommonJS modules use require and module.exports for _________.
- Consider a scenario where you are managing a list of items in a shopping cart. Would you use let or const to declare the list, and why?
- The super keyword in static methods refers to the _______ class's static methods and properties.
- To iterate over an array's elements using a for...of loop, write for (const element _______ array).
- In ES6, mixins can be created by a function that takes a _________ as an argument and extends it.