Skip to content

Commit 71f0efb

Browse files
mybluefishajpiano
authored andcommitted
Correct link to MDN JS reserved words reference, fix spelling of 'handful'. Fixes jquery#219.
1 parent 9aadc26 commit 71f0efb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

page/javascript-101/syntax-basics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ var foo=function() {for(var i=0;i<10;++){alert(i);}};foo();
5454

5555
### Reserved Words
5656

57-
There are a handfull of reserved words that can't be used when declaring user-defined variables and functions. Some of these reserved words are currently implemented, some are saved for future use, and others are reserved for historical reasons. A list of words and in-depth explanations for each can be found on the [MDN JavaScript Reference](https://developer.mozilla.org/en/JavaScript/Reference/Reserved_Words "MDN Reserved Words.") site.
57+
There are a handful of reserved words that can't be used when declaring user-defined variables and functions. Some of these reserved words are currently implemented, some are saved for future use, and others are reserved for historical reasons. A list of words and in-depth explanations for each can be found on the [MDN JavaScript Reference](https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Reserved_Words "MDN Reserved Words.") site.
5858

5959
### Identifiers
6060

0 commit comments

Comments
 (0)