JSFiddle - React, Tailwind, and code Playground
JavaScript
// generators
function* f1() {
console.log('_1');
const y = yield;
console.log('bey ${y}')
console.log('_2');
}
const f = f1();
f.next();
f.next('alen');
// generators
function* f1() {
console.log('_1');
const y = yield;
console.log('bey ${y}')
console.log('_2');
}
const f = f1();
f.next();
f.next('alen');