mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
14 lines
164 B
JavaScript
14 lines
164 B
JavaScript
function *foo () {
|
|
yield 5
|
|
}
|
|
|
|
(function *() {
|
|
console.log(foo().next().value)
|
|
})().next();
|
|
|
|
(function *() { })();
|
|
|
|
(function * () {
|
|
yield yield 3
|
|
})();
|