Reserved Keywords in Javascript - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T01:20:54Zhttp://stackoverflow.com/feeds/question/26255http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/26255/reserved-keywords-in-javascript10Reserved Keywords in JavascriptTitanous2008-08-25T15:29:39Z2009-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#2625715Answer by robintw for Reserved Keywords in Javascriptrobintw2008-08-25T15:30:38Z2008-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#603963Answer by benc for Reserved Keywords in Javascriptbenc2008-09-13T07:54:42Z2008-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#1477762Answer by Joseph Holsten for Reserved Keywords in JavascriptJoseph Holsten2008-09-29T07:07:59Z2008-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#1999480Answer by Chris Pietschmann for Reserved Keywords in JavascriptChris Pietschmann2008-10-14T03:39:56Z2008-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#16694370Answer by Dan for Reserved Keywords in JavascriptDan2009-11-03T18:58:42Z2009-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>