const test = document.getElementById('color');
test.childNodes; // nodeList type;
test.children; // collection type; // 일반적인 요소들
// 주로 사용됨
test.firstElementChild;
test.lastElementChild;
const t2 = document.getElementById('xxx');
t2.previousElementSibling; // xxx 이전 형제
t2.nextElementSibling; // xxx 이후 형제