Skip to content

Commit

Permalink
javascript-101/reserved-words: wrap words with backticks
Browse files Browse the repository at this point in the history
Closes gh-592
  • Loading branch information
arthurvr authored and RedWolves committed Jan 6, 2015
1 parent 095b8bc commit 857ae33
Showing 1 changed file with 45 additions and 45 deletions.
90 changes: 45 additions & 45 deletions page/javascript-101/reserved-words.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,48 +7,48 @@

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.

- break
- case
- catch
- class
- const
- continue
- debugger
- default
- delete
- do
- else
- enum
- export
- extends
- false
- finally
- for
- function
- if
- implements
- import
- in
- instanceof
- interface
- let
- new
- null
- package
- private
- protected
- public
- return
- static
- super
- switch
- this
- throw
- true
- try
- typeof
- var
- void
- while
- with
- yield
- `break`
- `case`
- `catch`
- `class`
- `const`
- `continue`
- `debugger`
- `default`
- `delete`
- `do`
- `else`
- `enum`
- `export`
- `extends`
- `false`
- `finally`
- `for`
- `function`
- `if`
- `implements`
- `import`
- `in`
- `instanceof`
- `interface`
- `let`
- `new`
- `null`
- `package`
- `private`
- `protected`
- `public`
- `return`
- `static`
- `super`
- `switch`
- `this`
- `throw`
- `true`
- `try`
- `typeof`
- `var`
- `void`
- `while`
- `with`
- `yield`

0 comments on commit 857ae33

Please sign in to comment.