es61 2020 KWEB 준회원 과제 3회차 - Javascript Feedback var 대신 let과 const를! 기본적으로 const를! 값을 변경할 수 있는 var는 예기하지 않은 문제를 일으킬 수 있습니다. 기본적으로 항상 const를 사용하고, 만약 차후에 재할당을 한다면 let, 변수를 선언하고 초기화하세요. 생각보다 let을 사용할 일이 거의 없을 겁니다. // content를 초기화 후에 수정하는 코드 var newComment = document.getElementById("new-comment").value; newComment = newComment.trim(); // 제안하는 코드 1 const newCommentEl = document.getElementById("new-comment"); const newCommentValue = newCommentEl... 2020. 6. 25. 이전 1 다음