<?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"
	>
<channel>
	<title>Comments on: Pro JavaScript Techniques by John Resig</title>
	<atom:link href="http://www.robertnyman.com/2007/01/30/pro-javascript-techniques-by-john-resig/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.robertnyman.com/2007/01/30/pro-javascript-techniques-by-john-resig/</link>
	<description>Web development and Internet trends</description>
	<pubDate>Fri, 05 Dec 2008 10:53:14 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>By: Robert Nyman</title>
		<link>http://www.robertnyman.com/2007/01/30/pro-javascript-techniques-by-john-resig/#comment-31913</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Wed, 31 Jan 2007 11:03:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2007/01/30/pro-javascript-techniques-by-john-resig/#comment-31913</guid>
		<description>Simon,

Nice. I wish you a pleasant read!

Daniel,

Interesting, thanks for the link.

Nate,

I'm glad that you liked the review! :-)
The book definitely isn't biased for any specific library, I can tell you that much.

Jrf,

Absolutely, PPK and his &lt;a href="http://www.quirksmode.org" rel="nofollow"&gt;quirksmode&lt;/a&gt; is an invaluable resource.

Ash,

It is in situations where &lt;code&gt;typeof&lt;/code&gt; would just return &lt;code&gt;"object"&lt;/code&gt;, as opposed to &lt;code&gt;constructor&lt;/code&gt; that would return &lt;code&gt;String&lt;/code&gt; for a string and &lt;code&gt;Array&lt;/code&gt; for an array.

I'd say that it is basically used in the same way as &lt;code&gt;instanceof&lt;/code&gt;.</description>
		<content:encoded><![CDATA[<p>Simon,</p>
<p>Nice. I wish you a pleasant read!</p>
<p>Daniel,</p>
<p>Interesting, thanks for the link.</p>
<p>Nate,</p>
<p>I&#8217;m glad that you liked the review! <img src='http://www.robertnyman.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
The book definitely isn&#8217;t biased for any specific library, I can tell you that much.</p>
<p>Jrf,</p>
<p>Absolutely, PPK and his <a href="http://www.quirksmode.org" rel="nofollow">quirksmode</a> is an invaluable resource.</p>
<p>Ash,</p>
<p>It is in situations where <code>typeof</code> would just return <code>"object"</code>, as opposed to <code>constructor</code> that would return <code>String</code> for a string and <code>Array</code> for an array.</p>
<p>I&#8217;d say that it is basically used in the same way as <code>instanceof</code>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ash Searle</title>
		<link>http://www.robertnyman.com/2007/01/30/pro-javascript-techniques-by-john-resig/#comment-31881</link>
		<dc:creator>Ash Searle</dc:creator>
		<pubDate>Wed, 31 Jan 2007 08:47:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2007/01/30/pro-javascript-techniques-by-john-resig/#comment-31881</guid>
		<description>Can you give a little more detail on how the book suggests to use the &lt;code&gt;constructor&lt;/code&gt; property? 

I'd guess you always need a null-check for &lt;code&gt;null&lt;/code&gt; and &lt;code&gt;undefined&lt;/code&gt; values; and I'd expect &lt;code&gt;instanceof&lt;/code&gt; may be better in some circumstances?</description>
		<content:encoded><![CDATA[<p>Can you give a little more detail on how the book suggests to use the <code>constructor</code> property? </p>
<p>I&#8217;d guess you always need a null-check for <code>null</code> and <code>undefined</code> values; and I&#8217;d expect <code>instanceof</code> may be better in some circumstances?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jrf</title>
		<link>http://www.robertnyman.com/2007/01/30/pro-javascript-techniques-by-john-resig/#comment-31705</link>
		<dc:creator>Jrf</dc:creator>
		<pubDate>Tue, 30 Jan 2007 21:34:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2007/01/30/pro-javascript-techniques-by-john-resig/#comment-31705</guid>
		<description>Interesting, will have to have a look at it some time.

I can't help but swear by PKK and his quicksmode.org website - whenever I'm in doubt about anything to do with js, it's my first place of call.</description>
		<content:encoded><![CDATA[<p>Interesting, will have to have a look at it some time.</p>
<p>I can&#8217;t help but swear by PKK and his quicksmode.org website - whenever I&#8217;m in doubt about anything to do with js, it&#8217;s my first place of call.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nate Klaiber</title>
		<link>http://www.robertnyman.com/2007/01/30/pro-javascript-techniques-by-john-resig/#comment-31685</link>
		<dc:creator>Nate Klaiber</dc:creator>
		<pubDate>Tue, 30 Jan 2007 19:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2007/01/30/pro-javascript-techniques-by-john-resig/#comment-31685</guid>
		<description>My copy of this arrived last evening, and I had the same initial thoughts you did in that I thought it was great that the second paragraph began talking about Object Oriented JS. No frilly stuff from the beginning, this book dives right in.

I am halfway through chapter 2, so I have a bit to go -but I really appreciated your review. I have been looking for some really good books on Javascript, without pushing a specific library. I think they could have separate books for the different libraries available, but I like keeping my libraries down to the tasks I need - without bloating the filesize. This is why I was hoping this book would dive more into JS, without pushing canned solutions or frameworks.</description>
		<content:encoded><![CDATA[<p>My copy of this arrived last evening, and I had the same initial thoughts you did in that I thought it was great that the second paragraph began talking about Object Oriented JS. No frilly stuff from the beginning, this book dives right in.</p>
<p>I am halfway through chapter 2, so I have a bit to go -but I really appreciated your review. I have been looking for some really good books on Javascript, without pushing a specific library. I think they could have separate books for the different libraries available, but I like keeping my libraries down to the tasks I need - without bloating the filesize. This is why I was hoping this book would dive more into JS, without pushing canned solutions or frameworks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Talsky</title>
		<link>http://www.robertnyman.com/2007/01/30/pro-javascript-techniques-by-john-resig/#comment-31679</link>
		<dc:creator>Daniel Talsky</dc:creator>
		<pubDate>Tue, 30 Jan 2007 18:09:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2007/01/30/pro-javascript-techniques-by-john-resig/#comment-31679</guid>
		<description>I guess I want to read Jack Slocum's JavaScript book, when and if he writes one.  I just recently read his post about the jQuery response to his benchmarks comparing jQuery and the YUI-Ext library:
&lt;a href="http://www.jackslocum.com/blog/2007/01/12/domquery-in-response-to-jquerys-response/" rel="nofollow"&gt;http://www.jackslocum.com/blog/2007/01/12/domquery-in-response-to-jquerys-response/&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>I guess I want to read Jack Slocum&#8217;s JavaScript book, when and if he writes one.  I just recently read his post about the jQuery response to his benchmarks comparing jQuery and the YUI-Ext library:<br />
<a href="http://www.jackslocum.com/blog/2007/01/12/domquery-in-response-to-jquerys-response/" rel="nofollow">http://www.jackslocum.com/blog/2007/01/12/domquery-in-response-to-jquerys-response/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon Proctor</title>
		<link>http://www.robertnyman.com/2007/01/30/pro-javascript-techniques-by-john-resig/#comment-31668</link>
		<dc:creator>Simon Proctor</dc:creator>
		<pubDate>Tue, 30 Jan 2007 16:53:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2007/01/30/pro-javascript-techniques-by-john-resig/#comment-31668</guid>
		<description>Funnily enough my copy arrived from Amazon this morning.</description>
		<content:encoded><![CDATA[<p>Funnily enough my copy arrived from Amazon this morning.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
