You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update list of reserved words in JavaScript. Fixes#301.
All of these are only considered reserved when in strict mode, but it is in any case a more correct list than the current one. See #295 for further discussion on how to present this list.
Copy file name to clipboardExpand all lines: page/javascript-101/reserved-words.md
+7-18Lines changed: 7 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -2,64 +2,53 @@
2
2
title: Reserved Words
3
3
level: beginner
4
4
source: http://jqfundamentals.com/legacy
5
-
attribution:
5
+
attribution:
6
6
- jQuery Fundamentals
7
7
---
8
-
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.
8
+
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.
0 commit comments