일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 데이터 타입
- javascript
- querySelector
- DFS
- html
- 부가데이터
- fragment
- ViewPager
- classList
- DOMContentLoaded
- 230510
- textContent
- Flutter
- intent
- 230508
- Adapter
- 안드로이드
- 함수 인자
- 인텐트
- putextra
- 230503
- serializable
- ActionBar
- Class
- string
- 프래그먼트
- parcelable
- null-safety
- C++
- 생명주기
- Today
- Total
목록foreach (2)
나만의 개발노트
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..
[나의 코드] - index.html counter 0 DECREASE RESET INCREASE - app.js const decBtn = document.getElementById('dec_btn'); const resBtn = document.getElementById('res_btn'); const incBtn = document.getElementById('inc_btn'); const value = document.getElementById('value'); let count = 0; decBtn.addEventListener('click',function(){ count--; if(count>0){ value.style.color = 'green'; }else if(count === 0){ ..