1. 브라우저별 웹
2. 흔하게 발생하는 에러
Uncaught ReferenceError: consle is not defined: console 입력 중에 오타(consle, comsole 등)가 나면 발생하는 에러. (모든 글자는 소문자)Uncaught TypeError: console.lg is not a function: console은 제대로 입력했으나 log에서 오타가 나면 발생하는 에러.Uncaught SyntaxError: missing ) after argument list: 따옴표를 사용하지 않았을 때 발생하는 에러.Uncaught SyntaxError: Invalid or unexpected token: 나와야할 게 나오지 않을 때 에러. 따옴표의 짝을 맞추지 않았을 때 발생하는 에러.( ) : parenthesis, { } : braces, [ ] : brackets3. 자바스크립트 특이점