From 3462d9b36fd3a2fca04b807fd3317502718a2480 Mon Sep 17 00:00:00 2001 From: Arthur Verschaeve Date: Fri, 26 Dec 2014 10:23:22 +0100 Subject: [PATCH] Javascript-101/reserved-words: wrap words with backticks --- page/javascript-101/reserved-words.md | 90 +++++++++++++-------------- 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/page/javascript-101/reserved-words.md b/page/javascript-101/reserved-words.md index 7187d0fe..9a2f9533 100644 --- a/page/javascript-101/reserved-words.md +++ b/page/javascript-101/reserved-words.md @@ -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`