Document 객체 & Text 객체
도큐먼트 객체 Document 객체는 DOM의 스팩이고 이것이 웹브라우저에서는 HTMLDocument 객체로 사용됩니다. HTMLDocument 객체 HTMLDocument 객체는 문서 전체를 대표하는 객체라고 할 수 있습니다. 아래 코드는 이를 보여주고 있습니다. JavaScript //document 객체는 window 객체의 소속이다. console.log(window.document); //document 객체의 자식으로는 Doctype과 html이 있다. console.log(window.document.childNodes[0]); console.log(window.document.childNodes[1]); 노드 생성 API document 객체의 주요 임무는 새로운 노드를 생성해주는 역할입니..