// HTML 속성 (HTML attribute)
const tomorrow = document.querySelector('#tomorrow');
const item = tomorrow.firstElementChild;
const link = item.firstElementChild;
console.log(tomorrow.getAttribute('href'));
console.log(item.getAttribute('class'));
tomorrow.setAttribute('class', 'list'); // 추가
link.setAttribute('href', 'https://www.codeit.kr'); // 수정
tomorrow.removeAttribute('href');
tomorrow.removeAttribute('class');