const myTag = document.querySelector('#content');
myTag.children; // 자식 요소 모음
myTag.children[i]; // n번째 자식 요소
myTag.firstElementChild; // 첫번째 자식 요소 하나
myTag.lastElementChild; // 마지막 자식 요소 하나
myTag.parentElement;
myTag.previousElementSibling; // 이전(previous) 혹은 좌측(left)에 있는 요소 하나
myTag.nextElementSibling; // 다음(next) 혹은 우측(right)에 있는 요소 하나