정답은
const button = document.querySelector('button')
button.addEventListener('click', (function(){
let count =0;
return function(){
count += 1;
if(count ===2){
alert("0으로 초기화 됩니다.")
count = 0;
}
}
})());
button.addEventListener('click',counter())
function counter(){
let count = 0;
return function(){
if(count===2){
alert("0으로 초기화 됩니다.")
count = 0;
}
count++;
}
}
const increaseCount = function(){
let count = 0;
return function(){
if(count===2){
alert("0으로 초기화 됩니다.")
count = 0;
}
count++;
}
}
button.addEventListener('click', increaseCount())
1. 즉시실행함수를 사용한 방법
2. 함수선언식 방법
3. 함수표현식 방법
'JS' 카테고리의 다른 글
뉴스 API를 이용하여 뉴스 검색기 만들기 (2) (0) | 2022.08.10 |
---|---|
클로저 문제 (0) | 2022.08.07 |
뉴스 API를 이용하여 뉴스 검색기 만들기 (1) (4) | 2022.08.04 |
함수형 프로그래밍 3탄 (0) | 2022.07.19 |
함수형 프로그래밍 2탄 (3) | 2022.07.15 |