JSFiddle - React, Tailwind, and code Playground

by adouga

JavaScript

// Generators

function *process() {
	yield 8000;
  yield 8001;
}

let it = process();
console.log(it.next());
console.log(it.next());
console.log(it.next());