Ajay lovingit.hashnode.devยทMar 30, 2024Getting started with generator functions in javascript.Generator functions in Javascript return a "Generator" Object. And a generator in return is a type of iterator. We can say an object is iterator when it has a next method someIterator.next() // {value:"some value",done: false) someIterator.next() // ...1 likegenerator functions javascriptAdd a thoughtful commentNo comments yetBe the first to start the conversation.