Skip to content

Instantly share code, notes, and snippets.

@m93a
Created January 15, 2018 23:54
Show Gist options
  • Save m93a/f44646d2d388307387d158fac057178c to your computer and use it in GitHub Desktop.
Save m93a/f44646d2d388307387d158fac057178c to your computer and use it in GitHub Desktop.
Yet another Fibonacci
(function(){
window.fibonacci = function(){
var n = new Number(1);
n.next = next;
return n;
};
function next(){
var n = new Number( this + (this.prev||0) );
n.prev = +this;
n.next = next;
return n;
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment