//HTML을 DOM 객체로 바꿀 수 있음(압축)
const title = document.getElementById("title");
title.innerHTML = "Hi! From JS"; //HTML #title의 값을 Hi! From JS로 바꿀 수 있음
1-1. console.dir();
const title = document.getElementById("title");
console.dir(document);
2. DOM을 이용한 HTML 값 수정
const title = document.getElementById("title");
title.innerHTML = "Hi! From JS";
title.style.color = "red"; //#title의 텍스트 색을 red로 변경 (따옴표 잊지말자!)
document.title = "I own you now"; //문서명 변경