Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Last active October 26, 2019 12:03
Show Gist options
  • Select an option

  • Save jasongorman/6beddff878f20f62f58f0d41e0b49e42 to your computer and use it in GitHub Desktop.

Select an option

Save jasongorman/6beddff878f20f62f58f0d41e0b49e42 to your computer and use it in GitHub Desktop.
const generateList = () => {
return []
}
const fizz = (number) => {
}
const buzz = (number) => {
}
const fizzBuzz = (number) => {
}
const output = generateList().map(
(number) => fizz(buzz(fizzBuzz(number))))
console.log(output.toString());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment