What is the most concise equivalent Coffeescript to the following:
# ruby 3.times { puts \'hi\' }
?
The best I could think of is:>
Since you're already using Underscore.js along with CoffeeScript:
_(3).times -> console.log('hi')