Skip to content

Instantly share code, notes, and snippets.

@jajoosam
Created January 17, 2016 05:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jajoosam/8c8cc04516d245388c06 to your computer and use it in GitHub Desktop.
Save jajoosam/8c8cc04516d245388c06 to your computer and use it in GitHub Desktop.
var limit = 4000000;
var a = 1;
var b = 1;
var sum = 0;
while(b < limit){
if (b % 2 === 0){
sum += b;
}
h = a+b;
a = b;
b = h;
}
document.write(sum);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment