-
Notifications
You must be signed in to change notification settings - Fork 65
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
[13팀 김보영] [Chapter 1-2] 프레임워크 없이 SPA 만들기 #10
base: main
Are you sure you want to change the base?
Conversation
return document.createTextNode(""); | ||
} | ||
if (typeof vNode === "string" || typeof vNode === "number") { | ||
return document.createTextNode(String(vNode)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
저는 vNode.toString()으로 구현했는데 보영님 코드를 보고 String(vNode)는 어떻게 다르지?! 하고 찾아보니 String()으로 사용했을 때는 인자로 null과 undefined까지 받을 수 있어서 더 활용성이 좋군요..! 배워갑니당ㅎㅎ
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
앗 딱히 의도한 건 아닌데 그런 차이점이 있었군요....!😂 감사합니다!!
과제 체크포인트
기본과제
가상돔을 기반으로 렌더링하기
이벤트 위임
심화 과제
1) Diff 알고리즘 구현
2) 포스트 추가/좋아요 기능 구현
과제 셀프회고
기술적 성장
코드 품질
학습 효과 분석
과제 피드백
리뷰 받고 싶은 내용