Skip to content

Instantly share code, notes, and snippets.

@szaboat
Created April 28, 2010 13:37
Show Gist options
  • Save szaboat/382144 to your computer and use it in GitHub Desktop.
Save szaboat/382144 to your computer and use it in GitHub Desktop.
(function(){
var i = 0,sum = 0;
while (i<1000) {
if (i%3==0 || i%5==0)
sum+=i;
i++;
}
print(sum);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment