- arr.forEach(callback(currentvalue[, index[, array]])[, thisArg]) - arr.forEach(function(item, index, arr){});
let fruits = ['banana', 'apple', 'melon']; let fruit = fruits.forEach(item => console.log(item)); console.log(fruit);
(function test(){ var testArray = [1,2,3,4,5]; var sum = 0; function getSum(value){ sum += value; } testArray.forEach(getSum); console.log(sum); })();
-> 15
- getSum 함수를 callbackFunction 으로 사용
- getSum 함수의 value는 currentValue
- 배열 내 인자 수만큼 반복되어 sum 변수에 더해진다
var testArray = [1,2,3,4,5]; var sum = 0; testArray.forEach(item => sum += item); console.log(sum);
-> 15
- +=는 item = item + sum이란 뜻이다
(function test(){ function Counter(){ this.sum = 0; } Counter.prototype.add = function(array){ array.forEach(function(currentValue){ this.sum += currentValue; }, this); } var obj = new Counter(); console.log(obj.sum); obj.add([1,2,3,4,5]); console.log(obj.sum); })();
-> 0과 15
- this는 Counter function
- obj.add 함수 호출 시 prototype chain 발생
let ss = ['바나나', '사과', '딸기']; ss.forEach((e) => { if(e ==='바나나'){ ss.shift(); } } ); console.log(ss);
- 값은 사과, 딸기
let vs = ['바나나', '딸기', '사과']; vs.forEach((e) => { if(e==='바나나') { vs[0] ='배'; } }); console.log(vs);
- 값은 배, 딸기, 사과
let vs = ['바나나', '딸기', '사과']; vs.forEach((e) => { if(e==='바나나') { vs.push('배'); } }); console.log(vs);
- 값은 바나나, 딸기, 사과, 배