Skip to content

Instantly share code, notes, and snippets.

@doxyf
Last active June 19, 2022 18:28
Show Gist options
  • Save doxyf/72b89cabc3dfc8af12a0cc70d2eacc45 to your computer and use it in GitHub Desktop.
Save doxyf/72b89cabc3dfc8af12a0cc70d2eacc45 to your computer and use it in GitHub Desktop.
The FizzBuzz thing in JavaScript
for (let i = 1; i <= 100; i++) {
console.log(fizzBuzz(i));
};
function fizzBuzz(num){
if(num % 5 == 0 && num % 3 == 0) return 'FizzBuzz';
if(num % 3 == 0) return 'Fizz'
if(num % 5 == 0) return 'Buzz'
return num;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment