<?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: Does JavaScript undefined Equals undefined?</title>
	<atom:link href="/2011/10/21/does-javascript-undefined-equals-undefined/feed/" rel="self" type="application/rss+xml" />
	<link>/2011/10/21/does-javascript-undefined-equals-undefined/</link>
	<description>on web development</description>
	<lastBuildDate>Fri, 26 Oct 2018 21:40:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.0.3</generator>
	<item>
		<title>By: xianyu</title>
		<link>/2011/10/21/does-javascript-undefined-equals-undefined/comment-page-1/#comment-14502</link>
		<dc:creator><![CDATA[xianyu]]></dc:creator>
		<pubDate>Sat, 22 Oct 2011 16:55:50 +0000</pubDate>
		<guid isPermaLink="false">/?p=2416#comment-14502</guid>
		<description><![CDATA[When it runs in firebug console,  it alert false. Use console.log(a), it return [a, ,a ...]. Here a means the HTMLLinkElements collections]]></description>
		<content:encoded><![CDATA[<p>When it runs in firebug console,  it alert false. Use console.log(a), it return [a, ,a &#8230;]. Here a means the HTMLLinkElements collections</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stoimen</title>
		<link>/2011/10/21/does-javascript-undefined-equals-undefined/comment-page-1/#comment-14493</link>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
		<pubDate>Fri, 21 Oct 2011 12:30:29 +0000</pubDate>
		<guid isPermaLink="false">/?p=2416#comment-14493</guid>
		<description><![CDATA[Actually you&#039;re right somehow! When I test it with the Firebug console ...
&lt;pre lang=&quot;javascript&quot;&gt;
var a;
var b = undefined;
alert(a === b);
&lt;/pre&gt;
... it strangely returns true. 
But within a &#060;script&#062; tag ...
&lt;pre lang=&quot;javascript&quot; escaped=&quot;true&quot;&gt;
&#060;script&#062;
var a;
var b = undefined;
alert(a === b);
&#060;/script&#062;
&lt;/pre&gt;
is FALSE. Isn&#039;t it weird?]]></description>
		<content:encoded><![CDATA[<p>Actually you&#8217;re right somehow! When I test it with the Firebug console &#8230;</p>
<pre lang="javascript">
var a;
var b = undefined;
alert(a === b);
</pre>
<p>&#8230; it strangely returns true.<br />
But within a &lt;script&gt; tag &#8230;</p>
<pre lang="javascript" escaped="true">
&lt;script&gt;
var a;
var b = undefined;
alert(a === b);
&lt;/script&gt;
</pre>
<p>is FALSE. Isn&#8217;t it weird?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stoimen</title>
		<link>/2011/10/21/does-javascript-undefined-equals-undefined/comment-page-1/#comment-14492</link>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
		<pubDate>Fri, 21 Oct 2011 12:23:19 +0000</pubDate>
		<guid isPermaLink="false">/?p=2416#comment-14492</guid>
		<description><![CDATA[It&#039;s great that Chrome returns true, but if that&#039;s not the case at the other &quot;modern&quot; browsers, then what?]]></description>
		<content:encoded><![CDATA[<p>It&#8217;s great that Chrome returns true, but if that&#8217;s not the case at the other &#8220;modern&#8221; browsers, then what?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Mulligan</title>
		<link>/2011/10/21/does-javascript-undefined-equals-undefined/comment-page-1/#comment-14491</link>
		<dc:creator><![CDATA[Jason Mulligan]]></dc:creator>
		<pubDate>Fri, 21 Oct 2011 11:42:44 +0000</pubDate>
		<guid isPermaLink="false">/?p=2416#comment-14491</guid>
		<description><![CDATA[Chrome says otherwise; see the url for a screenshot.
http://farm7.static.flickr.com/6104/6265793463_b721bf4ea5_o.png]]></description>
		<content:encoded><![CDATA[<p>Chrome says otherwise; see the url for a screenshot.<br />
<a href="http://farm7.static.flickr.com/6104/6265793463_b721bf4ea5_o.png" rel="nofollow">http://farm7.static.flickr.com/6104/6265793463_b721bf4ea5_o.png</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stoimen</title>
		<link>/2011/10/21/does-javascript-undefined-equals-undefined/comment-page-1/#comment-14490</link>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
		<pubDate>Fri, 21 Oct 2011 11:40:19 +0000</pubDate>
		<guid isPermaLink="false">/?p=2416#comment-14490</guid>
		<description><![CDATA[@Jason Mulligan - wrong, again &quot;false&quot;]]></description>
		<content:encoded><![CDATA[<p>@Jason Mulligan &#8211; wrong, again &#8220;false&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Mulligan</title>
		<link>/2011/10/21/does-javascript-undefined-equals-undefined/comment-page-1/#comment-14489</link>
		<dc:creator><![CDATA[Jason Mulligan]]></dc:creator>
		<pubDate>Fri, 21 Oct 2011 11:38:26 +0000</pubDate>
		<guid isPermaLink="false">/?p=2416#comment-14489</guid>
		<description><![CDATA[Triple equal operator for strict comparison.

a === b; // true]]></description>
		<content:encoded><![CDATA[<p>Triple equal operator for strict comparison.</p>
<p>a === b; // true</p>
]]></content:encoded>
	</item>
</channel>
</rss>
