Skip to content

Instantly share code, notes, and snippets.

@itochan
Created June 26, 2015 16:52
Show Gist options
  • Save itochan/5502364cf7bf5b68331b to your computer and use it in GitHub Desktop.
Save itochan/5502364cf7bf5b68331b to your computer and use it in GitHub Desktop.
function fizzBuzz() {
for (var i = 1; i <= 30; i++) {
if (i % 15 == 0) {
alert('Fizz Buzz');
} else if (i % 3 == 0) {
alert ('Fizz');
} else if (i % 5 == 0) {
alert('Buzz');
} else {
alert(i);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment