Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: remove "let" #164

Merged
merged 3 commits into from
Jun 17, 2022
Merged

Fix: remove "let" #164

merged 3 commits into from
Jun 17, 2022

Conversation

yerin512
Copy link

@yerin512 yerin512 commented Jun 6, 2022

아직 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이 되어야하지않나~?라는 게 저의 궁금증이에요!

아직 git에 서툴어서 급한대로 주석에 질문을 적어두었습니다...! 얼른 익숙해지도록 하겠습니다.
@daadaadaah
Copy link

daadaadaah commented Jun 6, 2022

먼저, 주석이라도 이용해서 궁금한 점을 남겨주신 점 너무 좋습니다!👍
저는 Github 기능을 활용해서 궁금한 점 남기기도 합니다! 아래 링크에서 Review 방법 편 참고해보세용!
참고 : im-d-team/Dev-Docs#11

예린님 생각하시기에,

(count = 0) 으로 계속 초기화를 하니, 함수를 실행하더라도 0이 나올 것이다.
그러면 카운터를 증가시키다라도 +1로 증가하지 않을 것이다.

라고 생각하신 것 같은데, 맞나용?ㅎㅎ

맞다면, 함수에 대해 좀더 공부해보시면, 좋을 것 같아요!
참고 : https://ko.javascript.info/function-basics#ref-718

함수에 매개변수에 = 할당하는 것은 기본값으로 할당 하는 거예요!
아무 함수 만들어서 여러가지 값(숫자, 문자, undefiend, null)을 넣어보시고, 콘솔로 값 하나하나 체크해보면서 실험해 보세요!

@yerin512
Copy link
Author

yerin512 commented Jun 6, 2022

다다다님 친절한 설명 너무 감사합니다!!
제가 기본이 많이 부족한 걸 첫날부터 깨닫네요!!
올려주신 github review 활용법도 읽고 다음 pr땐 사용해보겠습니다!

  • 근데 미션1도 처리해서 commit하였는데 git tranning 설명에선 딴 건 하지않아도 된다 적혀있는데
    또 한 번 pull request를 날려야하나요???

@yerin512 yerin512 changed the base branch from main to Yerin512 June 7, 2022 11:55
@yerin512
Copy link
Author

yerin512 commented Jun 7, 2022

base를 main으로 해서 제 브랜치로 바꿨습니다.!! 죄송합니다

Copy link

@daadaadaah daadaadaah left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

의도에 맞게 과제 잘 수행하셨어요!👍 고생하셨습니다!ㅎㅎ

@daadaadaah daadaadaah merged commit 1ea0924 into CodeSoom:Yerin512 Jun 17, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants