#3.0 The Document Object document는 브라우저에 이미 있는 객체 HTML을 가리키는 객체다. 자바스크립트 document 객체를 이용해서 html에 접근할 수 있다. (ex - Title) document.title 접근할 뿐만 아니라 수정도 가능함 document.title JavaScript는 이미 HTML에 연결되어있음. 특히 document 객체를 이용할 수 있음. #3.1 HTML in JavaScript document의 객체와 element를 가져오는 함수를 이용해서 html에 접근할 수 있다. Grab me! body에 Grab me라는 문구를 추가해주었다. JavaScript를 이용해서 이 h1 문구에 접근해보자. document.getElementById("ti..