Skip to content

Instantly share code, notes, and snippets.

@dwikipedia
Last active April 10, 2017 07:25
Show Gist options
  • Save dwikipedia/a31083daf828a6f9d2c40787bc83ba93 to your computer and use it in GitHub Desktop.
Save dwikipedia/a31083daf828a6f9d2c40787bc83ba93 to your computer and use it in GitHub Desktop.
for(x = 1; x <= 100; x++){
if(x % 15 == 0){
console.log('FizzBuzz');
}
else if(x % 3 == 0){
console.log('Fizz');
}
else if(x % 5 == 0){
console.log('Buzz');
} else {
console.log(x);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment