Skip to content

Commit c7638d3

Browse files
author
Rebecca Murphey
committed
reserved words
1 parent fe0cf60 commit c7638d3

File tree

1 file changed

+63
-0
lines changed

1 file changed

+63
-0
lines changed
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
---
2+
chapter : "js101"
3+
section: "5"
4+
title: "Reserved Words"
5+
---
6+
JavaScript has a number of “reserved words,” or words that have special meaning in the language. You should avoid using these words in your code except when using them with their intended meaning.
7+
8+
- abstract
9+
- boolean
10+
- break
11+
- byte
12+
- case
13+
- catch
14+
- char
15+
- class
16+
- const
17+
- continue
18+
- debugger
19+
- default
20+
- delete
21+
- do
22+
- double
23+
- else
24+
- enum
25+
- export
26+
- extends
27+
- final
28+
- finally
29+
- float
30+
- for
31+
- function
32+
- goto
33+
- if
34+
- implements
35+
- import
36+
- in
37+
- instanceof
38+
- int
39+
- interface
40+
- long
41+
- native
42+
- new
43+
- package
44+
- private
45+
- protected
46+
- public
47+
- return
48+
- short
49+
- static
50+
- super
51+
- switch
52+
- synchronized
53+
- this
54+
- throw
55+
- throws
56+
- transient
57+
- try
58+
- typeof
59+
- var
60+
- void
61+
- volatile
62+
- while
63+
- with

0 commit comments

Comments
 (0)