JSFiddle - React, Tailwind, and code Playground

by mayooresan

JavaScript

function* sayHi() {
	yield 'hey'
	return 'hi'
}

const result = sayHi()
console.log(result.next())
console.log(result.next())
console.log(result.next())