Skip to content

Instantly share code, notes, and snippets.

@overcyn
Last active March 8, 2017 19:29
Show Gist options
  • Select an option

  • Save overcyn/f44395997c284939a7cb to your computer and use it in GitHub Desktop.

Select an option

Save overcyn/f44395997c284939a7cb to your computer and use it in GitHub Desktop.
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