CoffeeScript攻略4.10:反轉陣列

CoffeeScript Cookbook發表於2011-12-10

問題

你想要反轉陣列元素。

方案

使用JavaScript Array的reverse()方法:

["one", "two", "three"].reverse()
# => ["three", "two", "one"]

討論

reverse()是標準的JavaScript方法;別忘了帶括號。


enter image description here

相關文章