Skip to content

Instantly share code, notes, and snippets.

@onigra
Last active December 10, 2015 17:49
Show Gist options
  • Save onigra/4470431 to your computer and use it in GitHub Desktop.
Save onigra/4470431 to your computer and use it in GitHub Desktop.
jsでfizzbuzz
<script>
function fizz(val) {
if (val % 3 == 0) { return "fizz" }
else { return "" }
}
function buzz(val) {
if (val % 5 == 0) { return "buzz" }
else { return "" }
}
for(i = 1; i < 101; i++) {
document.write(i, ":", fizz(i), buzz(i), "<br>")
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment