HTML grab me! 요소 가져오기 (getElements) const hellos = document.getElementsByClassName("hello"); console.log(hellos); /* [h1.hello, h1.hello, h1.hello, h1.hello] */ - getElementsByClassName : hello라는 class이름을 가진 요소를 가져오는 것 - 배열로 출력 - tagName, ById 등도 있음 querySelector, querySelectorAll const title = document.querySelector(".hello h1"); console.log(title); /* grab me! - 요소를 CSS 방식으로 검색 - querySelector..