<?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: jQuery.map() in 1.6</title>
	<atom:link href="http://www.learningjquery.com/2011/05/jquery-map-in-16/feed" rel="self" type="application/rss+xml" />
	<link>http://www.learningjquery.com/2011/05/jquery-map-in-16</link>
	<description>Tips, techniques, and tutorials for the jQuery JavaScript library</description>
	<lastBuildDate>Tue, 21 May 2013 00:41:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Ryan Bales</title>
		<link>http://www.learningjquery.com/2011/05/jquery-map-in-16/comment-page-1#comment-84197</link>
		<dc:creator>Ryan Bales</dc:creator>
		<pubDate>Thu, 04 Aug 2011 22:14:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/?p=1287#comment-84197</guid>
		<description><![CDATA[and it&#039;s faster http://jsperf.com/meta-testing]]></description>
		<content:encoded><![CDATA[<p>and it&#8217;s faster <a href="http://jsperf.com/meta-testing" rel="nofollow">http://jsperf.com/meta-testing</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Using jQuery.map() to Map One Object To Another &#124; Charles Bryant&#039;s Decoupled Logic</title>
		<link>http://www.learningjquery.com/2011/05/jquery-map-in-16/comment-page-1#comment-83762</link>
		<dc:creator>Using jQuery.map() to Map One Object To Another &#124; Charles Bryant&#039;s Decoupled Logic</dc:creator>
		<pubDate>Sun, 12 Jun 2011 02:20:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/?p=1287#comment-83762</guid>
		<description><![CDATA[[...] http://www.learningjquery.com/2011/05/jquery-map-in-16 &#8211; actually has a deep look into .map() and .each() [...]]]></description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.learningjquery.com/2011/05/jquery-map-in-16" rel="nofollow">http://www.learningjquery.com/2011/05/jquery-map-in-16</a> &#8211; actually has a deep look into .map() and .each() [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jordan Boesch</title>
		<link>http://www.learningjquery.com/2011/05/jquery-map-in-16/comment-page-1#comment-83726</link>
		<dc:creator>Jordan Boesch</dc:creator>
		<pubDate>Tue, 24 May 2011 14:40:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/?p=1287#comment-83726</guid>
		<description><![CDATA[@Saeed Neamati: I believe the reason to add object support to $.map was not just to provide &quot;an additional way to do the same thing&quot;. It was due to the fact that passing an object to $.map was a behavior that most expected would work.]]></description>
		<content:encoded><![CDATA[<p>@Saeed Neamati: I believe the reason to add object support to $.map was not just to provide &#8220;an additional way to do the same thing&#8221;. It was due to the fact that passing an object to $.map was a behavior that most expected would work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saeed Neamati</title>
		<link>http://www.learningjquery.com/2011/05/jquery-map-in-16/comment-page-1#comment-83725</link>
		<dc:creator>Saeed Neamati</dc:creator>
		<pubDate>Tue, 24 May 2011 10:21:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/?p=1287#comment-83725</guid>
		<description><![CDATA[Hi
Even if you can achieve the same result with jQuery.each(), but having alternatives for doing something is not that bad. Though, consistency may decrease and developers may loose time learning that new things are not increasing their programming power, and just provide additional ways to do the same thing.]]></description>
		<content:encoded><![CDATA[<p>Hi<br />
Even if you can achieve the same result with jQuery.each(), but having alternatives for doing something is not that bad. Though, consistency may decrease and developers may loose time learning that new things are not increasing their programming power, and just provide additional ways to do the same thing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hosting Best</title>
		<link>http://www.learningjquery.com/2011/05/jquery-map-in-16/comment-page-1#comment-83708</link>
		<dc:creator>Hosting Best</dc:creator>
		<pubDate>Tue, 17 May 2011 10:37:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/?p=1287#comment-83708</guid>
		<description><![CDATA[Awesome! Didnt know JQuery could do this, thanks for the write up.... will be referencing back to it in the future]]></description>
		<content:encoded><![CDATA[<p>Awesome! Didnt know JQuery could do this, thanks for the write up&#8230;. will be referencing back to it in the future</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danilo Celic</title>
		<link>http://www.learningjquery.com/2011/05/jquery-map-in-16/comment-page-1#comment-83684</link>
		<dc:creator>Danilo Celic</dc:creator>
		<pubDate>Sun, 08 May 2011 00:33:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/?p=1287#comment-83684</guid>
		<description><![CDATA[It seems that this code:
&lt;code&gt;
        // make sure we&#039;re dealing with a set of non-empties
        ( length&gt; 0 &amp;&amp; elems[ 0 ] &amp;&amp; elems[ length -1 ] ) 
&lt;/code&gt;
doesn&#039;t actually do what it says that it&#039;s trying to do. [0,0] will make that part of the condition pass. Of course, it&#039;ll eventually drop into the jQuery.isArray() call. Perhaps a little better:
&lt;code&gt;
( length &gt; 0 &amp;&amp; ( typeof elems[ 0 ] !== undefined ) &amp;&amp; ( typeof elems[ length -1 ]  !== undefined) )
&lt;/code&gt;

but maybe that falls on the other side of the balance between additional logic and performance.]]></description>
		<content:encoded><![CDATA[<p>It seems that this code:<br />
<code><br />
        // make sure we're dealing with a set of non-empties<br />
        ( length&gt; 0 &amp;&amp; elems[ 0 ] &amp;&amp; elems[ length -1 ] )<br />
</code><br />
doesn&#8217;t actually do what it says that it&#8217;s trying to do. [0,0] will make that part of the condition pass. Of course, it&#8217;ll eventually drop into the jQuery.isArray() call. Perhaps a little better:<br />
<code><br />
( length &gt; 0 &amp;&amp; ( typeof elems[ 0 ] !== undefined ) &amp;&amp; ( typeof elems[ length -1 ]  !== undefined) )<br />
</code></p>
<p>but maybe that falls on the other side of the balance between additional logic and performance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jordan Boesch</title>
		<link>http://www.learningjquery.com/2011/05/jquery-map-in-16/comment-page-1#comment-83674</link>
		<dc:creator>Jordan Boesch</dc:creator>
		<pubDate>Wed, 04 May 2011 14:08:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/?p=1287#comment-83674</guid>
		<description><![CDATA[@kuindji: That is a known issue. Something that&#039;s being pondered over due to the fact that it adding additional logic would affect performance. It&#039;s a balancing act between performance and making sure the most common use-case is covered - which we&#039;re assuming it won&#039;t be common for people to pass length: 0 as an object.]]></description>
		<content:encoded><![CDATA[<p>@kuindji: That is a known issue. Something that&#8217;s being pondered over due to the fact that it adding additional logic would affect performance. It&#8217;s a balancing act between performance and making sure the most common use-case is covered &#8211; which we&#8217;re assuming it won&#8217;t be common for people to pass length: 0 as an object.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DotNetShoutout</title>
		<link>http://www.learningjquery.com/2011/05/jquery-map-in-16/comment-page-1#comment-83673</link>
		<dc:creator>DotNetShoutout</dc:creator>
		<pubDate>Wed, 04 May 2011 13:45:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/?p=1287#comment-83673</guid>
		<description><![CDATA[&lt;strong&gt;jQuery.map() in 1.6 » Learning jQuery - Jordan Boesch...&lt;/strong&gt;

Thank you for submitting this cool story - Trackback from DotNetShoutout...]]></description>
		<content:encoded><![CDATA[<p><strong>jQuery.map() in 1.6 » Learning jQuery &#8211; Jordan Boesch&#8230;</strong></p>
<p>Thank you for submitting this cool story &#8211; Trackback from DotNetShoutout&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kuindji</title>
		<link>http://www.learningjquery.com/2011/05/jquery-map-in-16/comment-page-1#comment-83672</link>
		<dc:creator>kuindji</dc:creator>
		<pubDate>Wed, 04 May 2011 06:39:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/?p=1287#comment-83672</guid>
		<description><![CDATA[Well, 

&lt;code&gt;$.map({length: 0}, function(v,k) {
return k;
});&lt;/code&gt;

returns an empty array.]]></description>
		<content:encoded><![CDATA[<p>Well, </p>
<p><code>$.map({length: 0}, function(v,k) {<br />
return k;<br />
});</code></p>
<p>returns an empty array.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: boedesign &#8211; canadian based web developer eh &#187; Blog Archive &#187; jQuery.map() in 1.6</title>
		<link>http://www.learningjquery.com/2011/05/jquery-map-in-16/comment-page-1#comment-83666</link>
		<dc:creator>boedesign &#8211; canadian based web developer eh &#187; Blog Archive &#187; jQuery.map() in 1.6</dc:creator>
		<pubDate>Tue, 03 May 2011 21:02:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/?p=1287#comment-83666</guid>
		<description><![CDATA[[...] You can read my post at http://www.learningjquery.com/2011/05/jquery-map-in-16 [...]]]></description>
		<content:encoded><![CDATA[<p>[...] You can read my post at <a href="http://www.learningjquery.com/2011/05/jquery-map-in-16" rel="nofollow">http://www.learningjquery.com/2011/05/jquery-map-in-16</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching 8/21 queries in 0.005 seconds using disk
Object Caching 365/371 objects using disk
Content Delivery Network via learningjquery.kswedberg.netdna-cdn.com

 Served from: www.learningjquery.com @ 2013-05-24 23:34:17 by W3 Total Cache -->