function* generatorFunction() {
yield "Hello"
yield "World"
}
const generatedValue = generatorFunction()
for(const word of generatedValue){
console.log(word)
}
console.log([...generatedValue])
To embed this project on your website, copy the following code and paste it into your website's HTML: