function* startGame() { const answer = yield 'Do you love JavaScript?'; if (answer !== 'Yes') {...
var status = 'π'; setTimeout(() => {...
function* generatorOne() { yield ['a', 'b', 'c'];}...