Skip to content

Commit 857ae33

Browse files
arthurvrRedWolves
authored andcommitted
javascript-101/reserved-words: wrap words with backticks
Closes jquerygh-592
1 parent 095b8bc commit 857ae33

File tree

1 file changed

+45
-45
lines changed

1 file changed

+45
-45
lines changed

page/javascript-101/reserved-words.md

+45-45
Original file line numberDiff line numberDiff line change
@@ -7,48 +7,48 @@
77

88
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.
99

10-
- break
11-
- case
12-
- catch
13-
- class
14-
- const
15-
- continue
16-
- debugger
17-
- default
18-
- delete
19-
- do
20-
- else
21-
- enum
22-
- export
23-
- extends
24-
- false
25-
- finally
26-
- for
27-
- function
28-
- if
29-
- implements
30-
- import
31-
- in
32-
- instanceof
33-
- interface
34-
- let
35-
- new
36-
- null
37-
- package
38-
- private
39-
- protected
40-
- public
41-
- return
42-
- static
43-
- super
44-
- switch
45-
- this
46-
- throw
47-
- true
48-
- try
49-
- typeof
50-
- var
51-
- void
52-
- while
53-
- with
54-
- yield
10+
- `break`
11+
- `case`
12+
- `catch`
13+
- `class`
14+
- `const`
15+
- `continue`
16+
- `debugger`
17+
- `default`
18+
- `delete`
19+
- `do`
20+
- `else`
21+
- `enum`
22+
- `export`
23+
- `extends`
24+
- `false`
25+
- `finally`
26+
- `for`
27+
- `function`
28+
- `if`
29+
- `implements`
30+
- `import`
31+
- `in`
32+
- `instanceof`
33+
- `interface`
34+
- `let`
35+
- `new`
36+
- `null`
37+
- `package`
38+
- `private`
39+
- `protected`
40+
- `public`
41+
- `return`
42+
- `static`
43+
- `super`
44+
- `switch`
45+
- `this`
46+
- `throw`
47+
- `true`
48+
- `try`
49+
- `typeof`
50+
- `var`
51+
- `void`
52+
- `while`
53+
- `with`
54+
- `yield`

0 commit comments

Comments
 (0)