[js] for Each & Map
for Each 아무 값도 반환하지 않음. 기존 배열 변경 가능 const arr = [1, 2, 3] aarrrray.forEach((item, index) => { arr[index] = item * 2 }) console.log(arr)// [2, 4, 6] 1. value, index를 인자로 받기 item, index 순 const arr = ['apple', 'kiwi', 'grape', 'orange']; arr.forEach((item, index) => { console.log("index: " + index + ", item: " + item); }); //출력 결과 index: 0, item: apple index: 1, item: kiwi index: 2, item: grape in..