Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- CSS
- gird-row-end
- mongodb
- css#cascading#display#block#inline
- React
- classList
- variables
- python #qqplot #qq-plot #code
- foreach()
- grid-column-end
- createElement
- javascript
- grid-template-areas
- prompt()
- valuable
- grid-row-start
- react-hook-form
- var
- grid-column-start
- localStorage
- scope
- confirm()
- collapsing-margins
- javascipt
- className
- border-style
- package.json
- relative
- Grid
- box-shadow
Archives
- Today
- Total
data life
JS - forEach() 본문
forEach()
:배열을 순회하면서 인자로 전달한 함수를 호출하는 반복문
arr.forEach(func(value, index, array))
value
: 현재 순회 중인 요소index
: 현재 순회 중인 요소의 indexarray
: 배열 객체
1. 함수(function) 인자
function myFunc(item) {
console.log(item);
}
const array = ['a', 'b', 'c', 'd'];
array.forEach(myFunc);
> a
> b
> c
> d
2. 람다(lambda) 인자
array.forEach((item) => {
console.log(item);
});
> a
> b
> c
> d
3. value, index를 인자
array.forEach((item, index, array) => {
console.log("index: " + index + ", item: " + item
+ ", array[" + index + "]: " + array[index]);
});
'Front-end > JavaScript' 카테고리의 다른 글
[JavaScript] 값(Value)에 대해 알아보자 (0) | 2023.01.10 |
---|---|
Canvas (0) | 2022.11.24 |
JS - JS로 HTML 요소 추가하기 (0) | 2022.11.05 |
JS - setInterval()/setTimeout() , Date() , padStart()/padEnd() (0) | 2022.11.03 |
JS - preventDefault() , localStorage (0) | 2022.11.03 |