Para formatar uma data javascript como uma string no formato dd / mm / aa usando coffeescript:
zero_pad = (x) ->
if x < 10 then '0'+x else ''+x
Date::pretty_string = ->
d = zero_pad(this.getDate())
m = zero_pad(this.getMonth() + 1)
y = this.getFullYear()
y + m + d