function sayHi() { console.log(name); console.log(age);...
function* generator(i) { yield i; yield i * 2;...
(() => { let x = (y = 10);})();...