Created
January 14, 2016 18:18
-
-
Save BiosElement/c570bec0831b4608356c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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