Skip to content

Instantly share code, notes, and snippets.

@BiosElement
Created January 14, 2016 18:18
Show Gist options
  • Select an option

  • Save BiosElement/c570bec0831b4608356c to your computer and use it in GitHub Desktop.

Select an option

Save BiosElement/c570bec0831b4608356c to your computer and use it in GitHub Desktop.
console.log("Hello World");
var testsubject = 1;
var totalcount = 0;
while (testsubject < 1000) {
console.log("Testing " + testsubject);
if (testsubject % 3 == 0) {
console.log(testsubject + " Divisible by 3!");
totalcount = totalcount + testsubject;
} else if (testsubject % 5 == 0) {
console.log(testsubject + " Divisible by 5!");
totalcount = totalcount + testsubject;
}
testsubject++;
}
console.log("Total Count " + totalcount);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment