Created
August 6, 2015 11:01
-
-
Save JakeCoxon/d78fa1debc13e46ae54a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Array.apply(null, Array(15)) | |
.map((_, i) => i + 1) | |
.map(i => | |
[i, "Fizz", "Buzz", "FizzBuzz"][!(i % 3) + 2*!(i % 5)] | |
) | |
.forEach(::console.log) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment