Web/JavaScript
[JS] javascript 예약어
opid
2013. 8. 2. 11:46
Java Script 예약어(reserved word) |
abstract boolean break byte case catch char class const continue default do double else extend false finally float for function goto if implements import in instanceof int interface long native new null package private protected public return short static super switch synchronized this throw throws transient true try var void while with
예약어란 이미 정의해 놓은 변수로써 사용자가 임의로 생성하는 변수명으로 사용할 수 없는 것이며, 모두 소문자로 이루어져 있으므로 대문자로 사용하면 예약어로 해석되지 않는다. |