Skip to content

Instantly share code, notes, and snippets.

@numb86
Created July 11, 2019 04:02
Show Gist options
  • Save numb86/ac348f99f30e42e1e1386b404db345d9 to your computer and use it in GitHub Desktop.
Save numb86/ac348f99f30e42e1e1386b404db345d9 to your computer and use it in GitHub Desktop.
fizzbuzz
for (let i = 1; i <= 100; i++) {
let result = '';
if (i % 3 === 0) {
result += 'FIZZ';
}
if (i % 5 === 0) {
result += 'BUZZ';
};
console.log(result || i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment