how to write setTimeout with params by Coffeescript

Viewed 68494

Please tell me how to write javascript below in coffeescript.

setTimeout(function(){
    something(param);
}, 1000);
6 Answers
Related