Created
August 28, 2010 16:13
-
-
Save 0mg/555302 to your computer and use it in GitHub Desktop.
JavaScript keywords
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Javascript keywords | |
| // 文と式 | |
| break | |
| case | |
| catch | |
| continue | |
| default | |
| delete | |
| do | |
| else | |
| finally | |
| for | |
| function | |
| if | |
| in | |
| instanceof | |
| new | |
| return | |
| switch | |
| this | |
| throw | |
| try | |
| typeof | |
| var | |
| void | |
| while | |
| with | |
| // 将来の予約語 | |
| abstract | |
| boolean | |
| byte | |
| char | |
| class | |
| const | |
| debugger | |
| double | |
| enum | |
| export | |
| extends | |
| final | |
| float | |
| goto | |
| implements | |
| import | |
| int | |
| interface | |
| long | |
| native | |
| package | |
| private | |
| protected | |
| public | |
| short | |
| static | |
| super | |
| synchronized | |
| throws | |
| transient | |
| volatile | |
| // オブジェクト | |
| null | |
| // 真偽値 | |
| true | |
| false | |
| // 数値 | |
| NaN | |
| Infinity | |
| // 関数 | |
| eval | |
| parseInt | |
| parseFloat | |
| isNaN | |
| isFinite | |
| decodeURI | |
| decodeURIComponent | |
| encodeURI | |
| encodeURIComponent |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment