<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: JavaScript: Calling the unnamed</title>
	<atom:link href="http://www.phpied.com/javascript-calling-the-unnamed/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpied.com/javascript-calling-the-unnamed/</link>
	<description>Stoyan&#039;s blog about &#60;a href=&#34;/category/xhtml&#34; class=&#34;tag-minor&#34;&#62;(x)html(5)&#60;/a&#62;, &#60;a href=&#34;/category/ajax&#34; class=&#34;tag-major&#34;&#62;ajax&#60;/a&#62;, &#60;a href=&#34;/category/bookmarklets&#34; class=&#34;tag-major&#34;&#62;bookmarklets&#60;/a&#62;, &#60;a href=&#34;/category/browsers&#34; class=&#34;tag-minor&#34;&#62;browsers&#60;/a&#62;, &#60;a href=&#34;/category/css&#34; class=&#34;tag-normal&#34;&#62;css&#60;/a&#62;, &#60;a href=&#34;/category/firebug&#34; class=&#34;tag-minor&#34;&#62;firebug&#60;/a&#62;, &#60;a href=&#34;/category/javascript&#34; class=&#34;tag-numero-uno&#34;&#62;javascript&#60;/a&#62;, &#60;a href=&#34;/category/json&#34; class=&#34;tag-normal&#34;&#62;json&#60;/a&#62;, &#60;a href=&#34;/category/mdb2&#34; class=&#34;tag-minor&#34;&#62;mdb2&#60;/a&#62;, &#60;a href=&#34;/category/mysql&#34; class=&#34;tag-normal&#34;&#62;mysql&#60;/a&#62;, &#60;a href=&#34;/category/pear&#34; class=&#34;tag-numero-uno&#34;&#62;pear&#60;/a&#62;, &#60;a href=&#34;/category/performance&#34; class=&#34;tag-major&#34;&#62;performance&#60;/a&#62;, &#60;a href=&#34;/category/php&#34; class=&#34;tag-numero-uno&#34;&#62;php&#60;/a&#62;, &#60;a href=&#34;/category/phpbb&#34; class=&#34;tag-major&#34;&#62;phpbb&#60;/a&#62;, &#60;a href=&#34;/category/tools&#34; class=&#34;tag-normal&#34;&#62;tools&#60;/a&#62;, &#60;a href=&#34;/category/yslow&#34; class=&#34;tag-minor&#34;&#62;yslow&#60;/a&#62;, &#60;a href=&#34;/category/yui&#34; class=&#34;tag-normal&#34;&#62;yui&#60;/a&#62;, &#60;a href=&#34;/category/writing&#34; class=&#34;tag-minor&#34;&#62;writing&#60;/a&#62;, &#60;a href=&#34;/category/music&#34; class=&#34;tag-major&#34;&#62;music&#60;/a&#62;,... &#60;a href=&#34;/category/life-and-everything&#34; class=&#34;tag-normal&#34;&#62;life and everything&#60;/a&#62;.</description>
	<lastBuildDate>Sat, 11 Feb 2012 14:07:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>By: HB</title>
		<link>http://www.phpied.com/javascript-calling-the-unnamed/#comment-71504</link>
		<dc:creator>HB</dc:creator>
		<pubDate>Sun, 13 Sep 2009 05:29:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpied.com/javascript-calling-the-unnamed/#comment-71504</guid>
		<description>Weird. I wonder if there&#039;s some sort of compression/optimization value to this. One less variable &quot;name&quot; in there. Definitely odd to look at though.</description>
		<content:encoded><![CDATA[<p>Weird. I wonder if there&#8217;s some sort of compression/optimization value to this. One less variable &#8220;name&#8221; in there. Definitely odd to look at though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stoyan</title>
		<link>http://www.phpied.com/javascript-calling-the-unnamed/#comment-61932</link>
		<dc:creator>Stoyan</dc:creator>
		<pubDate>Fri, 17 Aug 2007 20:34:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpied.com/javascript-calling-the-unnamed/#comment-61932</guid>
		<description>True, can&#039;t think of any purpose. Apart from job security by writing unmaintainable code ;)

Here&#039;s another one from the &quot;this is not a syntax error&quot; department:
&lt;pre&gt;alert(&quot;test&quot;[1])&lt;/pre&gt;

And another one: http://www.wait-till-i.com/index.php?p=284</description>
		<content:encoded><![CDATA[<p>True, can&#8217;t think of any purpose. Apart from job security by writing unmaintainable code <img src='http://www.phpied.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Here&#8217;s another one from the &#8220;this is not a syntax error&#8221; department:</p>
<pre>alert("test"[1])</pre>
<p>And another one: <a href="http://www.wait-till-i.com/index.php?p=284" rel="nofollow">http://www.wait-till-i.com/index.php?p=284</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: steve</title>
		<link>http://www.phpied.com/javascript-calling-the-unnamed/#comment-61927</link>
		<dc:creator>steve</dc:creator>
		<pubDate>Fri, 17 Aug 2007 12:53:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpied.com/javascript-calling-the-unnamed/#comment-61927</guid>
		<description>Yeah, since the [] square brackets allow you to access any &quot;key&quot; member of the object, any unique key works... including [&quot;&quot;] empty string, even [null] works, as does [true] and [false].

Now, if there were only some real useful purpose for this... hmmm</description>
		<content:encoded><![CDATA[<p>Yeah, since the [] square brackets allow you to access any &#8220;key&#8221; member of the object, any unique key works&#8230; including [""] empty string, even [null] works, as does [true] and [false].</p>
<p>Now, if there were only some real useful purpose for this&#8230; hmmm</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: qureyoon</title>
		<link>http://www.phpied.com/javascript-calling-the-unnamed/#comment-61925</link>
		<dc:creator>qureyoon</dc:creator>
		<pubDate>Fri, 17 Aug 2007 09:18:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpied.com/javascript-calling-the-unnamed/#comment-61925</guid>
		<description>&quot;Reminds me of the Wizard of Earthsea a little bit where you had to know the true names of things in order to do the wizardry.&quot;

or as in Eragon too ;)

nice article btw ^^</description>
		<content:encoded><![CDATA[<p>&#8220;Reminds me of the Wizard of Earthsea a little bit where you had to know the true names of things in order to do the wizardry.&#8221;</p>
<p>or as in Eragon too <img src='http://www.phpied.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>nice article btw ^^</p>
]]></content:encoded>
	</item>
</channel>
</rss>

