Simple app to show that I know how to program
- given numbers 1 to 100
- print out "Fizz" if the number is divisible by 3
- print out "Buzz" if the number is divisible by 5
- print out "Bang" if the number is divisible by 7
- print out "Pop" if the number is divisible by 11
- if a number is divisible by more than one of the above numbers then print out each corresponding word
- otherewise simply print the number
yarn add @stej/fizz-buzz
const fizzbuzz = require("@stej/fizz-buzz");
console.log(fizzbuzz(11));