JS

클로저 문제

영프로95 2022. 8. 7. 04:13

count가 2가되면 초기화 되는 모습

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<body>
  <button id='button'>Click me!</button>
</body>
<script>
	<!-- write code...  -->
</script>
</html>

위의 HTML 코드를 활용하여 클로저 개념을 활용하여 "Click me!" 버튼을 2번이상 클릭시 0으로 초기화 되게끔 작성해주세요.