Skip to content

dustinosity/fizzbuzz.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

fizzbuzz.js

In case you were wondering...

const fizzBuzz = (x, y, answer) => x % y ? '' : answer;

for (let n = 1; n <= 100; n++) {
  console.log(fizzBuzz(n, 3, 'Fizz') + fizzBuzz(n, 5, 'Buzz') || n);
} 

Go ahead, paste it into your js console. I'll be over here waiting...

About

In case you were wondering...

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published