CoffeeScript攻略4.1:從陣列生成字串

CoffeeScript Cookbook發表於2011-12-01

問題

你想從一個陣列生成字串。

方案

使用JavaScript的Array的toString()方法: ["one", "two", "three"].toString() # => 'three,two,one'

討論

toString()是標準的JavaScript方法,呼叫它時事要忘了末尾的括號


enter image description here

相關文章