Last active
March 8, 2017 19:29
-
-
Save overcyn/f44395997c284939a7cb 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
| for (i = 1; i <= askNumber; i++) { | |
| if (i % 3 && i % 5) { | |
| document.write(i) | |
| } | |
| if (i % 15 == 0) { | |
| document.write('gene-parmesean') | |
| } else { | |
| if (i % 3 == 0) { | |
| document.write('gene') | |
| } | |
| if (i % 5 == 0) { | |
| document.write('parmesean') | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment