<?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: The Basics of Object-Oriented JavaScript</title>
	<atom:link href="http://net.tutsplus.com/tutorials/javascript-ajax/the-basics-of-object-oriented-javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://net.tutsplus.com/tutorials/javascript-ajax/the-basics-of-object-oriented-javascript/</link>
	<description>Web Development &#38; Design Tutorials</description>
	<lastBuildDate>Sun, 21 Mar 2010 05:19:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Minill</title>
		<link>http://net.tutsplus.com/tutorials/javascript-ajax/the-basics-of-object-oriented-javascript/comment-page-1/#comment-224536</link>
		<dc:creator>Minill</dc:creator>
		<pubDate>Sun, 07 Mar 2010 17:45:01 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=7670#comment-224536</guid>
		<description>Lucid article on javascript.</description>
		<content:encoded><![CDATA[<p>Lucid article on javascript.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: saiful103a</title>
		<link>http://net.tutsplus.com/tutorials/javascript-ajax/the-basics-of-object-oriented-javascript/comment-page-1/#comment-159643</link>
		<dc:creator>saiful103a</dc:creator>
		<pubDate>Mon, 11 Jan 2010 22:51:31 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=7670#comment-159643</guid>
		<description>awesome tutorial about javascript oop.</description>
		<content:encoded><![CDATA[<p>awesome tutorial about javascript oop.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ManiKanta</title>
		<link>http://net.tutsplus.com/tutorials/javascript-ajax/the-basics-of-object-oriented-javascript/comment-page-1/#comment-141640</link>
		<dc:creator>ManiKanta</dc:creator>
		<pubDate>Fri, 04 Dec 2009 11:27:29 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=7670#comment-141640</guid>
		<description>Well!

Can you explain this with an example

Thanks</description>
		<content:encoded><![CDATA[<p>Well!</p>
<p>Can you explain this with an example</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Umut</title>
		<link>http://net.tutsplus.com/tutorials/javascript-ajax/the-basics-of-object-oriented-javascript/comment-page-1/#comment-135707</link>
		<dc:creator>Umut</dc:creator>
		<pubDate>Tue, 24 Nov 2009 05:43:55 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=7670#comment-135707</guid>
		<description>Can you be able reuse this object. What is the purpose of using this way ?</description>
		<content:encoded><![CDATA[<p>Can you be able reuse this object. What is the purpose of using this way ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sebastian Jaramillo T.</title>
		<link>http://net.tutsplus.com/tutorials/javascript-ajax/the-basics-of-object-oriented-javascript/comment-page-1/#comment-135134</link>
		<dc:creator>Sebastian Jaramillo T.</dc:creator>
		<pubDate>Mon, 23 Nov 2009 04:38:07 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=7670#comment-135134</guid>
		<description>Great concepts. Thanks!</description>
		<content:encoded><![CDATA[<p>Great concepts. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raja</title>
		<link>http://net.tutsplus.com/tutorials/javascript-ajax/the-basics-of-object-oriented-javascript/comment-page-1/#comment-132745</link>
		<dc:creator>Raja</dc:creator>
		<pubDate>Tue, 17 Nov 2009 09:01:23 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=7670#comment-132745</guid>
		<description>Today I learned the basics of OO Javascript, Thank you for your tutorial.</description>
		<content:encoded><![CDATA[<p>Today I learned the basics of OO Javascript, Thank you for your tutorial.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ImBuzu</title>
		<link>http://net.tutsplus.com/tutorials/javascript-ajax/the-basics-of-object-oriented-javascript/comment-page-1/#comment-131294</link>
		<dc:creator>ImBuzu</dc:creator>
		<pubDate>Sun, 15 Nov 2009 00:37:31 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=7670#comment-131294</guid>
		<description>As promised, I&#039;m back to talk a bit more about objects. 
I said there is another way to create objects, and that is using the Object Class (not really a class, but commonly called that way):

var myObj =  new Object();
myObj.prop = &quot;my property&quot;
myObj.method = function(){

}

As you can see, it is really easy to create objects using the Object &quot;class&quot;. It is basically the same as writing objects using the literal notation. 

One thing I&#039;d have liked to see is usage of the prototype of the constructor function because that is what actually makes a difference between using the constructor and literal notation or Object(). Besides that, I think it is a really good introduction to OO Javascript.</description>
		<content:encoded><![CDATA[<p>As promised, I&#8217;m back to talk a bit more about objects.<br />
I said there is another way to create objects, and that is using the Object Class (not really a class, but commonly called that way):</p>
<p>var myObj =  new Object();<br />
myObj.prop = &#8220;my property&#8221;<br />
myObj.method = function(){</p>
<p>}</p>
<p>As you can see, it is really easy to create objects using the Object &#8220;class&#8221;. It is basically the same as writing objects using the literal notation. </p>
<p>One thing I&#8217;d have liked to see is usage of the prototype of the constructor function because that is what actually makes a difference between using the constructor and literal notation or Object(). Besides that, I think it is a really good introduction to OO Javascript.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ImBuzu</title>
		<link>http://net.tutsplus.com/tutorials/javascript-ajax/the-basics-of-object-oriented-javascript/comment-page-1/#comment-130200</link>
		<dc:creator>ImBuzu</dc:creator>
		<pubDate>Fri, 13 Nov 2009 22:02:30 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=7670#comment-130200</guid>
		<description>I just scanned the article. No time to read it whole today, but I&#039;ll soon. I just wanted to point out that theres is yet another way to create objects in javascript. I&#039;ll comment more on that and some other things that I see are missing in the article.</description>
		<content:encoded><![CDATA[<p>I just scanned the article. No time to read it whole today, but I&#8217;ll soon. I just wanted to point out that theres is yet another way to create objects in javascript. I&#8217;ll comment more on that and some other things that I see are missing in the article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Pecoraro</title>
		<link>http://net.tutsplus.com/tutorials/javascript-ajax/the-basics-of-object-oriented-javascript/comment-page-1/#comment-130148</link>
		<dc:creator>Joseph Pecoraro</dc:creator>
		<pubDate>Fri, 13 Nov 2009 18:40:08 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=7670#comment-130148</guid>
		<description>I agree with Jeremy. I think you did a good job with the tutorial, covering areas people typically have trouble, but some of the fundamental parts are &quot;hand-waved&quot;. Remember that your audience is developers. If you are going to water down particular sections let them know!!

The part I found most frustrating was your explanation of &quot;scope&quot; and &quot;this&quot;. To be honest, you provide a good ballpark description to &quot;get the jist of it&quot; but you don&#039;t indicate that there is more to it, or point to a resource where someone can learn it correctly in more detail.  To put it in perspective, what is a developer to think when they use jQuery and &quot;this&quot; continually changes seemly magically for them?

In summary. Be honest/open about simplifications and point to external resources for full disclosure if it may benefit the readers. I can see that you put a lot of work into this article and I appreciate that (I know from personal experience as well). Keep on writing, hopefully we can improve the quality of your articles =)</description>
		<content:encoded><![CDATA[<p>I agree with Jeremy. I think you did a good job with the tutorial, covering areas people typically have trouble, but some of the fundamental parts are &#8220;hand-waved&#8221;. Remember that your audience is developers. If you are going to water down particular sections let them know!!</p>
<p>The part I found most frustrating was your explanation of &#8220;scope&#8221; and &#8220;this&#8221;. To be honest, you provide a good ballpark description to &#8220;get the jist of it&#8221; but you don&#8217;t indicate that there is more to it, or point to a resource where someone can learn it correctly in more detail.  To put it in perspective, what is a developer to think when they use jQuery and &#8220;this&#8221; continually changes seemly magically for them?</p>
<p>In summary. Be honest/open about simplifications and point to external resources for full disclosure if it may benefit the readers. I can see that you put a lot of work into this article and I appreciate that (I know from personal experience as well). Keep on writing, hopefully we can improve the quality of your articles =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremy McPeak</title>
		<link>http://net.tutsplus.com/tutorials/javascript-ajax/the-basics-of-object-oriented-javascript/comment-page-1/#comment-130081</link>
		<dc:creator>Jeremy McPeak</dc:creator>
		<pubDate>Fri, 13 Nov 2009 15:14:11 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=7670#comment-130081</guid>
		<description>You&#039;re certainly free to spend your time however you want, but how do you expect to write effective and efficient code if you don&#039;t know the language? What do you do when you encounter a bug that is caused by the lack of knowledge of the language?

It&#039;s fine to use a library, but you&#039;re only selling yourself short by being completely and totally dependent on the library.</description>
		<content:encoded><![CDATA[<p>You&#8217;re certainly free to spend your time however you want, but how do you expect to write effective and efficient code if you don&#8217;t know the language? What do you do when you encounter a bug that is caused by the lack of knowledge of the language?</p>
<p>It&#8217;s fine to use a library, but you&#8217;re only selling yourself short by being completely and totally dependent on the library.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.110 seconds -->
