Created
August 3, 2012 20:50
-
-
Save ungoldman/3251385 to your computer and use it in GitHub Desktop.
Quest for the Shortest FizzBuzz
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
for (var i=1;i<=100;i++){ | |
var s = ''; | |
if (i % 3 === 0) s += 'Fizz'; | |
if (i % 5 === 0) s += 'Buzz'; | |
console.log(s ? s : i); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@SiddharthShyniben You gotta use
console.log
for the challenge, however even with replacingalert
you still are the shortest I've seen at 62 characters!!! 🎉