Open
Conversation
- innerHTML += 방식과 배열.join() 방식의 DOM 조작 성능 차이를 측정하는 HTML/JS 실험 페이지 구현 - <td> 1000개 렌더링 테스트와 달력 형식 <tr><td> 테스트 포함
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
✨어떤 과제를 수행했나요?✨
innerHTML += 방식과 배열.join() 방식의 DOM 조작 성능 차이를 비교하는 실험용 웹 페이지를 구현했습니다.
브라우저에서 1000개의 요소를 렌더링하거나, 달력(6주 × 7일) 형태의 표를 그릴 때 각 방식의 실행 시간을 측정하고, 결과를 시각적으로 비교할 수 있도록 구성했습니다.
자세한 내용은 해당 디렉토리 내부 README.md 파일 참고 부탁드립니다.