getElementById(id)id를통해 일치하는 엘리먼트 객체 반환일치하는게 없으면 null 반환 querySelector(selectors)selector와 일치하는 첫번째 엘리먼트 객체 반환일치하는게 없으면 null 반환getElementyByClassNameclass명과 일치하는 엘리먼트들의 HTMLCollection을 반환 querySelectorAll선택자와 일치하는 엘리먼트들의 NodeList를 반환종류 프로퍼티 메서드HTMLCollectionHTMLCollection.lengthHTMLCollection.item()HTMLCollection.namedItem()NodeListNodeList.lengthNodeList.item()NodeList.entries()NodeList.forEach..