In a for...of loop, the _________ method of an iterable object is called to retrieve values.
- next()
- iterate()
- forEach()
- value()
In a for...of loop, the next() method of an iterable object is called to retrieve values. The next() method is automatically called in each iteration of the loop, returning an object with the value property containing the current value.
Loading...
Related Quiz
- Is it possible to call a static method from another static method within the same class?
- How do you import a default export from a module?
- Q2: If you are managing a group of user objects, each with associated metadata, how would using a WeakMap affect memory management compared to using a Map?
- In a logging function, how can default parameters be used to control the verbosity of the logs?
- Which of the following best describes the purpose of functional composition?