What is generator in JS?

What is generator in JS?

Regular functions can return one value at a time but while using generators you can return multiple values at the same time. For generator we need a special (function*) which is also known as generator function.