Power of JS Generators
What is a Generator and how do differentiate between function and Generator?
// function* means that its a generator
function normalFunction() {
}
function* generatorFunction() {
}
A Generator is a type of Iterator.
What is an Iterator?
let's unders...