Skip to content

Instantly share code, notes, and snippets.

@Omrika
Last active August 29, 2015 14:09
Show Gist options
  • Save Omrika/28be905a9104261ee4d7 to your computer and use it in GitHub Desktop.
Save Omrika/28be905a9104261ee4d7 to your computer and use it in GitHub Desktop.
for(var i = 0; i <= 20; i++) {
if( i % 3 === 0 && i % 5 === 0 ) {
console.log( "FizzBuzz" );
} else if( i % 3 === 0 ) {
console.log( "Fizz" );
} else if( i % 5 === 0 ) {
console.log( "Buzz" );
} else {
console.log( i );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment