๐ฐgenerator function as ...
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
JS โฉ objects โฉ built-in โฉ Generator โฉ generator function โฉ as ...
generator function can be used as๏ผ
replit๏ผgenerator functions as ...
// โญ๏ธ function* expressions
// โญโโโโโโโ ๐ธ 1. as "variable" โโโโโโโโฎ
const f = function*() { yield 'a'; yield 'b'; };
// โฐโโโโโโโโโโโโโโ const statement โโโโโโโโโโโโโโโโฏ
let obj = {