forEach, map, filter : 각 배열 원소에 함수 적용하기
forEach, map, filter 메서드 forEach 메서드 예제 살펴보기 javascript var charSets = ['ab', 'bb', 'cd', 'ab', 'cc', 'ab', 'dd', 'ab']; function replaceElement(element, idx, arr) { if (element == 'ab') { arr[idx] = '**'; } } charSets.forEach(replaceElement); console.log(charSets); charSets.forEach(function (el, idx, arr) { if (el == '**') { arr[idx] = '***' } }); console.log(charSets); map 메서드 : 배열의 모든 원소에 함수를..