Skip to content

Instantly share code, notes, and snippets.

@DScheglov
Last active November 1, 2020 10:03
Show Gist options
  • Save DScheglov/7b1e0be3aa9a1e86702c97c934781a42 to your computer and use it in GitHub Desktop.
Save DScheglov/7b1e0be3aa9a1e86702c97c934781a42 to your computer and use it in GitHub Desktop.
const message =
i % 3 === 0 && i % 5 === 0 ? (
"fizzbuzz"
) : i % 3 === 0 ? (
"fizz"
) : i % 5 === 0 ? (
"buzz"
) : i % 7 === 0 ? (
"foo"
) : (
String(i)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment