1)문제 - Quiz #3 Events Practice - Starter Kit 📌 Stop, Pause, Go 클릭 시 빨간색, 주황색, 초록색불이 들어와야 합니다. book.vanillacoding.co 2)풀이 spanElements는 여러 요소를 가진 유사 배열 객체이다. 이에 for문을 통해 해당 객체의 내부 item들을 모두 순회하며 배경색을 초기화하였음. const buttonElement = document.querySelector("button"); const spanElement1 = document.querySelectorAll('span')[0] const spanElement2 = document.querySelectorAll('span')[1] const spanElement3 ..