JSFiddle - React, Tailwind, and code Playground

by youssef moudine

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');