Skip to content

Instantly share code, notes, and snippets.

@MarcelloDiSimone
Created July 11, 2025 22:21
Show Gist options
  • Save MarcelloDiSimone/31be9d2e02d43617df0e49340662a9b3 to your computer and use it in GitHub Desktop.
Save MarcelloDiSimone/31be9d2e02d43617df0e49340662a9b3 to your computer and use it in GitHub Desktop.
FizzBuzz
const fizzbuzz = n => (n % 3 ? '' : 'Fizz') + (n % 5 ? '' : 'Buzz') || n;
arr = [...Array(100).keys()]
.map((i) => ++i)
.map((i) => fizzbuzz(i));
console.log(arr);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment