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.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *