配列にいくつかの項目がある場合にtrueを返すcoffeescriptのメソッドはありますか? ruby のようなメソッドpresent?
:
[].present? false
[1].present? true
http://arcturo.github.com/library/coffeescript/07_the_bad_parts.htmlによると、coffeescriptの配列の空はその長さによって決定されます
alert("Empty Array") unless [].length
それは私にはとても不自由に思えます。