// 스타일 다루기 const today = document.querySelector('#today'); const tomorrow = document.querySelector('#tomorrow'); style 프로퍼티 Javascript에서 스타일 프로퍼티는 카멜 표기법을 사용한다. ex) textDecoration, backgroundColor 등 스타일 프로퍼티를 사용하면 해당 태그에 스타일 속성이 직접적으로 추가되기 때문에 스타일 우선순위가 높아지며 같은 스타일을 여러 태그에 적용할 때는 비슷한 코드를 많이 작성해야하는 단점이 있다. 따라서, 일반적으로 자바스크립트에서 스타일을 다룰 때 스타일 프로퍼티를 사용하는 것 보다 class 속성을 변경하는 방식이 더 권장되는 방법이다. // style ..