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
- querySelector
- ViewPager
- null-safety
- 230508
- parcelable
- 함수 인자
- putextra
- 데이터 타입
- 인텐트
- fragment
- javascript
- 230503
- 안드로이드
- textContent
- intent
- 생명주기
- string
- DFS
- Adapter
- classList
- html
- 프래그먼트
- 부가데이터
- Class
- ActionBar
- DOMContentLoaded
- Flutter
- serializable
- 230510
- C++
Archives
- Today
- Total
목록currentvalue (1)
나만의 개발노트
[JS 개념] forEach()
forEach() : 주어진 callback함수를 배열에 있는 각 요소에 대해 오름차순으로 한 번씩 실행한다. arr.forEach(callback(currentvalue[, index[, array]])[, thisArg]) - callback : 각 요소에 대해 실행할 함수 - currentvalue(명명된 매개변수) : 처리할 현재 요소 - index(선택적 매개변수) : 처리할 현재 요소의 인덱스 - array(선택적 매개변수) : forEach()를 호출한 배열 - thisArg : callback을 실행할 때 this로 사용할 값. //전달되지 않으면 undefined사용 1. currentvalue만 사용 const numbers = [1,2,3,4,5]; numbers.forEach(fun..
[JavaScript]/[JavaScript] 개념 모음
2023. 5. 3. 23:24