[Error] JSP/JavaScript 에러 :: 템플릿 리터럴(템플릿 스트링) 표현식 안나올 때
캐떠린
❓ Problem: jsp 파일의 내에 작성한 템플릿 리터럴(템플릿 스트링)내의 표현식이 나오지 않는다. 날짜 관련 유효성 검사를 하던 도중 확인을 위해 console.log로 아래와 같이 찍어봤는데 이리 애를쓰고 저리 애를써도 사진과 같이 빈 값만 출력되었다. 기존 코드(jsp 파일 하단 Script 부분) const now = new Date(); const year = now.getFullYear(); const month = now.getMonth() + 1; const date = now.getDate(); console.log(`${year}-${month}-${date}`); 이거 뭔데여 내 year, month, date 다 어디갔는데여 ❗ Solution 생각해보니 수업때도 templat..