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 | 31 |
Tags
- foreach()
- localStorage
- var
- relative
- javascript
- classList
- box-shadow
- className
- prompt()
- gird-row-end
- python #qqplot #qq-plot #code
- css#cascading#display#block#inline
- CSS
- react-hook-form
- collapsing-margins
- React
- package.json
- mongodb
- grid-template-areas
- valuable
- javascipt
- scope
- grid-column-end
- variables
- border-style
- createElement
- grid-column-start
- grid-row-start
- Grid
- confirm()
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 |