Day 5라고 하고 , 1차 고비라고 하죠~~~ Click function을 통해 title 색 변경 실습 const h1 = document.querySelector("div.hello:first-child h1"); function handleTitleClick() { //click 이벤트 발생 + 함수 실행 const currentColor = h1.style.color; //변수 선언 후 h1.style.color 값 복사 (getter) let newColor; //값이 변경될 수 있기에 let으로 변수 선언 if (currentColor === "blue") { //currentColor 현재 값 확인 -> 조건에 따라 newColor에 색 대입 newColor = "tomato"; } els..