textContent 와 innerHTML 차이점 ❓
textContent와 innerHTML 은 어떨 때 어떻게 사용해야 할까? textContent : 단순히 텍스트를 읽고 쓰는 속성으로 노드와 그 자손의 텍스트 콘텐츠를 표현한다. MDN 사이트의 예제를 한번 보자. This is some text! let text = document.getElementById('divA').textContent; // The text variable is now: 'This is some text!' document.getElementById('divA').textContent = 'This text is different!'; // The HTML for divA is now: // This text is different! 이렇게 HTML 에서 textConten..