Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
아직 git에 서툴어서 급한대로 주석에 질문을 적어두었습니다...! 얼른 익숙해지도록 하겠습니다.
// 미션 1. eslint 통과 -> 'render' was used before it was defined. 안 뜨게 하기.
// 미션 2. let을 써서 count 값을 재할당 하지 마라.
두 개의 미션 중 미션 2만 우선 작업했습니다.
주석에도 적어두었듯 33번째 라인에서 render의 인수 받는 자리에
count = 0 이 아닌 count를 두었었는데요.
우선 초기값을 준다 생각하고 count = 0 으로 수정했는데
이상하게 코드가 정상 작동이 되더라구요..!!
count는 계속 handleClick에서 ++ 1 되는 값으로
넘어오는데 count = 0으로 바뀌어서 들어오지않는 이유를 모르겠습니다..!!
계속 count 가 1이 되어야하지않나~?라는 게 저의 궁금증이에요!