<?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: Advanced Javascript: Logical Operators and truthy / falsy</title>
	<atom:link href="http://nfriedly.com/techblog/2009/06/advanced-javascript-operators-and-truthy-falsy/feed/" rel="self" type="application/rss+xml" />
	<link>http://nfriedly.com/techblog/2009/06/advanced-javascript-operators-and-truthy-falsy/</link>
	<description>Expert Advice on Website Development, Javascript, Ajax, and Security</description>
	<lastBuildDate>Thu, 22 Jul 2010 16:58:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: nFriedly</title>
		<link>http://nfriedly.com/techblog/2009/06/advanced-javascript-operators-and-truthy-falsy/comment-page-1/#comment-2101</link>
		<dc:creator>nFriedly</dc:creator>
		<pubDate>Thu, 25 Feb 2010 15:58:05 +0000</pubDate>
		<guid isPermaLink="false">http://nfriedly.com/techblog/?p=46#comment-2101</guid>
		<description>Because JavaScript is weird...

alert([] == false) // true

alert([] == true) // false

alert( ( [] ) ? &#039;truthy&#039; : &#039;falsy&#039; ) // truthy

I&#039;ll append the original article though, thanks for pointing it out!</description>
		<content:encoded><![CDATA[<p>Because JavaScript is weird&#8230;</p>
<p>alert([] == false) // true</p>
<p>alert([] == true) // false</p>
<p>alert( ( [] ) ? &#8216;truthy&#8217; : &#8216;falsy&#8217; ) // truthy</p>
<p>I&#8217;ll append the original article though, thanks for pointing it out!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Tjin</title>
		<link>http://nfriedly.com/techblog/2009/06/advanced-javascript-operators-and-truthy-falsy/comment-page-1/#comment-2100</link>
		<dc:creator>Andy Tjin</dc:creator>
		<pubDate>Thu, 25 Feb 2010 15:25:39 +0000</pubDate>
		<guid isPermaLink="false">http://nfriedly.com/techblog/?p=46#comment-2100</guid>
		<description>So you say [] is truthy. But then why is the following true?
[] == false</description>
		<content:encoded><![CDATA[<p>So you say [] is truthy. But then why is the following true?<br />
[] == false</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chuck Denk</title>
		<link>http://nfriedly.com/techblog/2009/06/advanced-javascript-operators-and-truthy-falsy/comment-page-1/#comment-36</link>
		<dc:creator>Chuck Denk</dc:creator>
		<pubDate>Fri, 12 Jun 2009 19:21:33 +0000</pubDate>
		<guid isPermaLink="false">http://nfriedly.com/techblog/?p=46#comment-36</guid>
		<description>So, &amp;&amp; and &#124;&#124; in JavaScript act essentially the same as they do in the C programming language, if I&#039;m not mistaken.</description>
		<content:encoded><![CDATA[<p>So, &amp;&amp; and || in JavaScript act essentially the same as they do in the C programming language, if I&#8217;m not mistaken.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nFriedly</title>
		<link>http://nfriedly.com/techblog/2009/06/advanced-javascript-operators-and-truthy-falsy/comment-page-1/#comment-32</link>
		<dc:creator>nFriedly</dc:creator>
		<pubDate>Wed, 10 Jun 2009 19:47:41 +0000</pubDate>
		<guid isPermaLink="false">http://nfriedly.com/techblog/?p=46#comment-32</guid>
		<description>Thanks, I just published a new article on objects, arrays &amp; array-like objects that I was writing when your comment came in:

http://nfriedly.com/techblog/2009/06/advanced-javascript-objects-arrays-and-array-like-objects/</description>
		<content:encoded><![CDATA[<p>Thanks, I just published a new article on objects, arrays &#038; array-like objects that I was writing when your comment came in:</p>
<p><a href="http://nfriedly.com/techblog/2009/06/advanced-javascript-objects-arrays-and-array-like-objects/" rel="nofollow">http://nfriedly.com/techblog/2009/06/advanced-javascript-objects-arrays-and-array-like-objects/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johan</title>
		<link>http://nfriedly.com/techblog/2009/06/advanced-javascript-operators-and-truthy-falsy/comment-page-1/#comment-31</link>
		<dc:creator>Johan</dc:creator>
		<pubDate>Wed, 10 Jun 2009 17:52:59 +0000</pubDate>
		<guid isPermaLink="false">http://nfriedly.com/techblog/?p=46#comment-31</guid>
		<description>Great article!

I was always juggeling with if/else and (var ? var : &#039;x&#039;) statements.

Thanks alot!</description>
		<content:encoded><![CDATA[<p>Great article!</p>
<p>I was always juggeling with if/else and (var ? var : &#8216;x&#8217;) statements.</p>
<p>Thanks alot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nFriedly</title>
		<link>http://nfriedly.com/techblog/2009/06/advanced-javascript-operators-and-truthy-falsy/comment-page-1/#comment-21</link>
		<dc:creator>nFriedly</dc:creator>
		<pubDate>Mon, 08 Jun 2009 14:34:10 +0000</pubDate>
		<guid isPermaLink="false">http://nfriedly.com/techblog/?p=46#comment-21</guid>
		<description>Thanks for pointing the differences between php and javascript. I updated the article to point out how php evaluates empty arrays and &quot;0&quot; as falsy.</description>
		<content:encoded><![CDATA[<p>Thanks for pointing the differences between php and javascript. I updated the article to point out how php evaluates empty arrays and &#8220;0&#8243; as falsy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Truth of JavaScript at Nicollet.Net</title>
		<link>http://nfriedly.com/techblog/2009/06/advanced-javascript-operators-and-truthy-falsy/comment-page-1/#comment-20</link>
		<dc:creator>The Truth of JavaScript at Nicollet.Net</dc:creator>
		<pubDate>Mon, 08 Jun 2009 14:14:07 +0000</pubDate>
		<guid isPermaLink="false">http://nfriedly.com/techblog/?p=46#comment-20</guid>
		<description>[...] nFriedly posted an interesting refresher on JavaScript boolean evaluation of non-boolean values : Logical Operators and Truthy / Falsy. [...]</description>
		<content:encoded><![CDATA[<p>[...] nFriedly posted an interesting refresher on JavaScript boolean evaluation of non-boolean values : Logical Operators and Truthy / Falsy. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
