Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
Java 3
SUBMITTED BY:
assassin413
DATE:
Oct. 7, 2016, 2:07 p.m.
FORMAT:
Text only
SIZE:
271 Bytes
Raw
Download
Tweet
HITS:
703
Go to comments
Report
function* idMaker(){
var index = 0;
while(index < 3)
yield index++;
}
var gen = idMaker();
console.log(gen.next().value); // 0
console.log(gen.next().value); // 1
console.log(gen.next().value); // 2
console.log(gen.next().value); // undefined
// ...
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus