Please tell me how to write javascript below in coffeescript.
setTimeout(function(){ something(param); }, 1000);
setTimeout ( -> something param ), 1000
The parentheses are optional, but starting the line with a comma seemed messy to me.