Skip to content

Instantly share code, notes, and snippets.

@rozanovz
Last active April 20, 2016 09:23
Show Gist options
  • Select an option

  • Save rozanovz/d4d639c8f6f4e222c5f06d45259ce9a6 to your computer and use it in GitHub Desktop.

Select an option

Save rozanovz/d4d639c8f6f4e222c5f06d45259ce9a6 to your computer and use it in GitHub Desktop.
fib = function(numMax){
var counter = 0,
i = 1,
j = 1;
for (var k = 0; k < numMax; k++) {
if ((Math.max(i,j) % 2) !==0)
counter++;
x = i + j;
i = j;
j = x;
}
return counter;
};
console.log(fib(20));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment