iT邦幫忙

鐵人檔案

2014 iT 邦幫忙鐵人賽
回列表

Sharping up with UnderScore.js library 系列

以實際的狀況表達 Underscore 的價值 , 希望在 UnderScore.js 的肩膀上 , 我們可以更專注在價值更高的事物上~

所有發表文章同步發佈於 http://www.dotblogs.com.tw/holmes2136/Default.aspx

鐵人鍊成 | 共 31 篇文章 | 1 人訂閱 訂閱系列文 RSS系列文
DAY 20

Underscore [20] : 使用 range 情境

今天我們來介紹 Underscore 一個方便的功能 , range , 來個簡單的 sample 如下 : .range(10); => [0, 1,...

2014-10-20 ‧ 由 holmes2136 分享
DAY 21

Underscore [21] : 使用 invert 情境

在這裡來介紹一個功能 , invert , 它可以把一個 object 裡面的 key 和 value 對調 , 這個功能我們曾在 Underscore How...

2014-10-21 ‧ 由 holmes2136 分享
DAY 22

Underscore [22] : 使用 pick

今天我們來介紹 Underscore 的 pick 功能 , 其功能可以過濾 object 某些 key 值 , 並返回該 object . 簡單的範例如下 :...

2014-10-22 ‧ 由 holmes2136 分享
DAY 23

Underscore [23] : 有趣的 functions 方法

今天來介紹 Underscore 一個有趣的功能 , _functions , 它可以返回該物件裡面所有的 function , 簡單的範例如下 : _.fun...

2014-10-23 ‧ 由 holmes2136 分享
DAY 24

Underscore [24] : 使用 debounce 情境

今天來介紹 Underscore 一個滿實用的功能 , debounce , 其網站的中文介紹說明如下 : 返回 function 函数的防反跳版本, 将延迟函...

2014-10-24 ‧ 由 holmes2136 分享
DAY 25

Underscore [25] : 使用 extend 範例

今天來介紹 Underscore 的 extend 功能 , 其功能為复制source对象中的所有属性覆盖到destination对象上, 并且返回 desti...

2014-10-25 ‧ 由 holmes2136 分享
DAY 26

Underscore [26] : 使用 memoize

今天來介紹 Underscore 的 memoize , 其功能簡體說明如下 : Memoizes方法可以缓存某函数的计算结果。对于耗时较长的计算是很有帮助的。...

2014-10-26 ‧ 由 holmes2136 分享
DAY 27

Underscore [27] : 使用 shuffle

今天來介紹 Underscore 其中一個功能 , shuffle , 它能夠返回一個隨機排序的陣列副本 , 簡單的範例如下 : _.shuffle([1, 2...

2014-10-27 ‧ 由 holmes2136 分享
DAY 28

Underscore [28] : When to use Compact

今天來介紹 Underscore 的 Compact 功能 , 它能夠回傳一個已去除所有 false 的陣列副本 , 簡單的範例如下 : _.compact([...

2014-10-28 ‧ 由 holmes2136 分享
DAY 29

Underscore [29] : 使用 chain

總算快到鐵人賽尾聲了 , 今天來介紹 Underscore 的 chain 語法 , 其能夠更為精簡語法的使用 , 簡單的範例如下 : 下面的範例執行了 :...

2014-10-29 ‧ 由 holmes2136 分享