From e79b93d704fa4d7a291f605b092df67e1306318d Mon Sep 17 00:00:00 2001 From: mybluefish Date: Wed, 23 Jan 2013 12:44:17 +0800 Subject: [PATCH] Update page/javascript-101/syntax-basics.md --- page/javascript-101/syntax-basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/page/javascript-101/syntax-basics.md b/page/javascript-101/syntax-basics.md index a902e4fb..7bf44e50 100644 --- a/page/javascript-101/syntax-basics.md +++ b/page/javascript-101/syntax-basics.md @@ -54,7 +54,7 @@ var foo=function() {for(var i=0;i<10;++){alert(i);}};foo(); ### Reserved Words -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. +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-US/docs/JavaScript/Reference/Reserved_Words "MDN Reserved Words.") site. ### Identifiers