JSFiddle - React, Tailwind, and code Playground
by Pavan Podila
Babel + JSX
function* hello() {
yield 'hello';
yield 'world';
}
let gen = hello();
console.log(gen.next())
by Pavan Podila
function* hello() {
yield 'hello';
yield 'world';
}
let gen = hello();
console.log(gen.next())