Skip to content

Instantly share code, notes, and snippets.

@mythicalprogrammer
Created May 10, 2013 01:11
Show Gist options
  • Save mythicalprogrammer/5551785 to your computer and use it in GitHub Desktop.
Save mythicalprogrammer/5551785 to your computer and use it in GitHub Desktop.
var a = 1,
b = 2,
temp = 0,
total = 2;
while (total < 4000001) {
temp = a + b;
if (temp%2 === 0) {
total += temp;
}
a = b;
b = temp;
}
console.log(total);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment