Which method is essential for an object to be an iterator?
- next() method
- getIterator() method
- iterate() method
- forEach() method
An iterator in JavaScript must implement the next() method. This method is called on each iteration and should return an object with properties like value and done, indicating the next value in the sequence and whether the iteration is complete.
Loading...
Related Quiz
- What is the default behavior of this at the top level in ES6 Modules, as opposed to CommonJS modules?
- What are the first and second arguments of a tag function in a tagged template literal?
- Functions that perform HTTP requests are not considered pure because they _________.
- When developing an application with multiple dependent asynchronous API calls, would you choose Promises or callbacks? Explain why.
- What is the significance of side effects in a function in terms of functional programming?