Skip to content

Instantly share code, notes, and snippets.

@zhjgithub
Created October 14, 2018 05:45
Show Gist options
  • Save zhjgithub/f3f33cbe76e8193d2b2713c6a1b8c978 to your computer and use it in GitHub Desktop.
Save zhjgithub/f3f33cbe76e8193d2b2713c6a1b8c978 to your computer and use it in GitHub Desktop.
FizzBuzz
for (let n = 1; n <= 100; n++) {
let output = '';
if(n % 3 === 0) output += 'Fizz';
if(n % 5 === 0) output += 'Buzz';
console.log(output || n);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment