当数组中有一些项目时,coffeescript 中是否有一些方法返回 true?像 ruby 中的方法present?
:
[].present? false
[1].present? true
根据http://arcturo.github.com/library/coffeescript/07_the_bad_parts.html,coffeescript中的数组空性由其长度决定
alert("Empty Array") unless [].length
这对我来说似乎很蹩脚。