Developer/Javascript
[자바스크립트] filter(), reduce()
filter() filter 함수는 콜백 함수의 조건에 해당하는 모든 요소가 있는 배열을 새로 생성한다. let newArr = arr.filter(callbackFunction (element, index, array), thisArg); filter 함수의 매개변수는 콜백 함수와 thisArg이다. thisArg는 filter에서 사용될 this이고, thisArg를 사용하지 않는 경우 undefined가 전달된다. 콜백 함수의 매개 변수는 element, index, array 3 가지이다. element : value 값 index : value의 인덱스 값 array : filter에서 사용되는 배열 객체 let arr = [1,2,3,4] let newArr = arr.filter(functi..