Error :: ReferenceError : started is not defined at HTMLButtonElement
Trying to note Errors that I met while studying JavaScript.
When you use a Class, and forget 'this', then this ReferenceError will come out.
ReferenceError: * is not defined at HTMLButtonElement
solution : Find the thing that is missing 'this' in front of it
클래스를 생성하면서 리팩토링할 때 곳곳에 this. 를 빠트려 해당 에러가 많이 발생했다.
에러 메시지에 익숙해져서 디버깅을 자연스럽게 잘 하고 싶어서 기록해본다.
해결방법 : this. 를 붙여줄 아이를 찾아서 꼼꼼히 작성하기.