cereateElement 사용하기
이해 못 했던 부분. 1. forEach(); 메소드를 제데로 이해 못함. The forEach() method calls a function once for each element in an array, in order. 2. addEventListener() 메소드를 제대로 이해 못 함. The addEventListener() method attaches an event handler to the specified element. addEventListener는 요소 하나에 각각 하나씩 붙는 메서드. document.querySelectorAll("li")은 배열인데 여기에 바로 메서드를 붙여줘서 type에러가 났음. 꼭 for 또는 forEach를 사용해서 요소 하나씩을 선택한 후 addevent..