Underscore.js
つまみ食い
Underscore.js とは
関数型の js ライブラリ
関数型プログラミングの特徴
(雑な解説)
『引数を処理して
値を返す』
var plus = function (a, b) {
return a + b
}
plus (1, 2) # => 3
足し算
var plus = function (a, b) {
return a + b
}
plus (
1, 2
) # => 3
足し算
引数
を渡して
var plus = function (a, b) {
return a + b
}
plus (1, 2) # =>
3
足し算
値
を返す
Underscore.js は
そんなライブラリ
_.each
_.map
_.template
Made with Slides.com