[JavaScript] Uncaught SyntaxError: Unexpectedidentifier
·
Programming Language/JavaScript
💡 식별자가 예상하지 못한 위치에서 등장했다는 오류 이스케이프 문자를 사용하지 않고 한 종류의 따옴표만 사용하면 오류 발생!> 'This is 'string''Uncaught SyntaxError: UnexpectedidentifierThis is와 string과 ‘ ‘의 나열을 보면 This is와 ‘ ‘는 문자열 자료형이지만, 가운데 있는 string은 단순한 식별자로 본다.⇒ 식별자 주변에 잘못된 코드가 있다는 의미