Skip to content

Instantly share code, notes, and snippets.

@doron2402
Created January 13, 2015 23:49
Show Gist options
  • Save doron2402/5ed1564ffb2df1c2983c to your computer and use it in GitHub Desktop.
Save doron2402/5ed1564ffb2df1c2983c to your computer and use it in GitHub Desktop.
es6/7 fib
function* fib(num) {
var prev = 0;
var curr = 1;
while (curr < num) {
var tmp = prev;
prev = curr;
curr = tmp + curr;
yield curr;
}
}
for (var i of fib(10)){
console.log(i)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment