9 lines
216 B
CoffeeScript
9 lines
216 B
CoffeeScript
# The more compact "array comprehension" style
|
|
console.log i for i in [10..0]
|
|
|
|
# The "regular" for loop style.
|
|
for i in [10..0]
|
|
console.log i
|
|
|
|
# More compact version of the above
|
|
for i in [10..0] then console.log i
|