Skip to content

Instantly share code, notes, and snippets.

@Crashtor
Created May 19, 2018 04:24
Show Gist options
  • Save Crashtor/81116cb65551518e2458eda2efb0a10a to your computer and use it in GitHub Desktop.
Save Crashtor/81116cb65551518e2458eda2efb0a10a to your computer and use it in GitHub Desktop.
var odd = 0
var even = 1
var sum = 0;
var limit = 4000000;
while ((odd + even) < limit) {
sum = odd + even;
odd = even;
even = sum;
if (sum % 2 == 0) {
console.log(sum);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment