_.filter( ) 함수
underscore.js의 collection 중에서 _.filter( ) 함수에 대해 알아보자. filter _.filter(list, predicate, [context])list: colletion으로써, 배열이나 객체가 될 수 있다. predicate: list의 각 element(value)의 결과값이 truth인지 확인하는 test 함수이다. [context]: predicate 함수에서 this로 바인딩 되는 것이다.(생략가능)--> list의 각 element(value)를 predicate 함수를 돌려, 값이 truth인 것만 배열의 element로 리턴한다. [예제] [context]가 생략될 경우 var evens = _.filter([1, 2, 3, 4, 5, 6], function..