Skip to content

Instantly share code, notes, and snippets.

@craigbutcher
Created February 27, 2015 14:42
Show Gist options
  • Save craigbutcher/5d8b987736a04f0d0d82 to your computer and use it in GitHub Desktop.
Save craigbutcher/5d8b987736a04f0d0d82 to your computer and use it in GitHub Desktop.
FizzBuzz?
// If you memorised this by heart and complete it in the test interview. Good for you.
// It doesn't mean squat! ;-)
for(var i = 1; i < 100; i++ ){
if( i % 3 == 0 ){
console.log("Fizz");
}
if ( i % 5 == 0 ){
console.log("Buzz");
}
if( ( i % 3 != 0 ) && ( i % 5 == 0 ) ){
console.log("FizzBuzz");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment