Reserved Keywords in Javascript - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T01:20:54Z http://stackoverflow.com/feeds/question/26255 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/26255/reserved-keywords-in-javascript 10 Reserved Keywords in Javascript Titanous 2008-08-25T15:29:39Z 2009-11-03T18:58:42Z <p>What Javascript keywords (function names, variables, etc) are reserved?</p> http://stackoverflow.com/questions/26255/reserved-keywords-in-javascript/26257#26257 15 Answer by robintw for Reserved Keywords in Javascript robintw 2008-08-25T15:30:38Z 2008-08-25T15:30:38Z <p><a href="http://javascript.about.com/library/blreserved.htm" rel="nofollow">http://javascript.about.com/library/blreserved.htm</a> lists them quite nicely.</p> http://stackoverflow.com/questions/26255/reserved-keywords-in-javascript/60396#60396 3 Answer by benc for Reserved Keywords in Javascript benc 2008-09-13T07:54:42Z 2008-10-03T17:11:09Z <p>We should be linking to the actual sources of info, rather than just the top google hit.</p> <p><a href="http://developer.mozilla.org/En/Core_JavaScript_1.5_Reference/Reserved_Words" rel="nofollow">http://developer.mozilla.org/En/Core_JavaScript_1.5_Reference/Reserved_Words</a></p> <p>JSscript 8.0: <a href="http://msdn.microsoft.com/en-us/library/ttyab5c8.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ttyab5c8.aspx</a></p> <p>I'll look for ECMAScript links later.</p> http://stackoverflow.com/questions/26255/reserved-keywords-in-javascript/147776#147776 2 Answer by Joseph Holsten for Reserved Keywords in Javascript Joseph Holsten 2008-09-29T07:07:59Z 2008-09-29T07:07:59Z <p>To supplement benc, see <a href="http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-262.pdf" rel="nofollow">Standard ECMA-262</a>. These are the official reserved words, but only a pedant ignores the implementation to respect the standard. For the reserved words of the most popular implementations, that is firefox and internet explorer, see benc's answer.</p> <p>The reserved words in EMCAScript-262 are the <em>Keyword</em>s, <em>Future Reserved Word</em>s, <em>NullLiteral</em>, and <em>BooleanLiteral</em>s, where the <em>Keywords</em> are</p> <pre><code>break else new var case finally return void catch for switch while continue function this with default if throw delete in try do instanceof typeof </code></pre> <p>the <em>Future Reserved Word</em>s are</p> <pre><code>abstract enum int short boolean export interface static byte extends long super char final native synchronized class float package throws const goto private transient debugger implements protected volatile double import public </code></pre> <p>the <em>NullLiteral</em> is</p> <pre><code>null </code></pre> <p>and the <em>BooleanLiteral</em>s are</p> <pre><code>true false </code></pre> http://stackoverflow.com/questions/26255/reserved-keywords-in-javascript/199948#199948 0 Answer by Chris Pietschmann for Reserved Keywords in Javascript Chris Pietschmann 2008-10-14T03:39:56Z 2008-10-14T03:39:56Z <p>This is one of the many things discussed in <a href="http://rads.stackoverflow.com/amzn/click/0596517742" rel="nofollow">"JavaScript: The Good Parts" by Douglas Crockford</a>.</p> <p>By the way, I'm not affiliated with the publisher; The book is just that awesome.</p> http://stackoverflow.com/questions/26255/reserved-keywords-in-javascript/1669437#1669437 0 Answer by Dan for Reserved Keywords in Javascript Dan 2009-11-03T18:58:42Z 2009-11-03T18:58:42Z <p>I discovered today that the word "keywords" is a reserved word in IE javascript. It turns out to be an object that contains a list of all the keywords. No errors are generated if you try and use this as a variable, but any time you try and access the value of your variable you get an object back instead of what you assigned to it. Arg!</p>