Created
August 12, 2015 01:58
-
-
Save pumpkincouture/978986229149dbd0204e 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
# CoffeeScript # JavaScript | |
countdown = (num for num in [10..1]) var countdown, num; | |
countdown = (function() { | |
var i, results; | |
results = []; | |
for (num = i = 10; i >= 1; num = --i) { | |
results.push(num); | |
} | |
return results; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment