<?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: OOP JavaScript: Accessing Public Methods in Private Methods</title>
	<atom:link href="/2011/07/28/oop-javascript-accessing-public-methods-in-private-methods/feed/" rel="self" type="application/rss+xml" />
	<link>/2011/07/28/oop-javascript-accessing-public-methods-in-private-methods/</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: David.</title>
		<link>/2011/07/28/oop-javascript-accessing-public-methods-in-private-methods/comment-page-1/#comment-491011</link>
		<dc:creator><![CDATA[David.]]></dc:creator>
		<pubDate>Sat, 26 May 2018 14:09:26 +0000</pubDate>
		<guid isPermaLink="false">/?p=2339#comment-491011</guid>
		<description><![CDATA[Thanks, was going crazy trying to figure out how to access a global variable from a private function.]]></description>
		<content:encoded><![CDATA[<p>Thanks, was going crazy trying to figure out how to access a global variable from a private function.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wellington Torrejais da Silva</title>
		<link>/2011/07/28/oop-javascript-accessing-public-methods-in-private-methods/comment-page-1/#comment-403782</link>
		<dc:creator><![CDATA[Wellington Torrejais da Silva]]></dc:creator>
		<pubDate>Thu, 07 Apr 2016 17:06:54 +0000</pubDate>
		<guid isPermaLink="false">/?p=2339#comment-403782</guid>
		<description><![CDATA[Cool!]]></description>
		<content:encoded><![CDATA[<p>Cool!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danish Khan</title>
		<link>/2011/07/28/oop-javascript-accessing-public-methods-in-private-methods/comment-page-1/#comment-363364</link>
		<dc:creator><![CDATA[Danish Khan]]></dc:creator>
		<pubDate>Mon, 21 Sep 2015 04:27:39 +0000</pubDate>
		<guid isPermaLink="false">/?p=2339#comment-363364</guid>
		<description><![CDATA[Nice article.]]></description>
		<content:encoded><![CDATA[<p>Nice article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mateus Haas</title>
		<link>/2011/07/28/oop-javascript-accessing-public-methods-in-private-methods/comment-page-1/#comment-182768</link>
		<dc:creator><![CDATA[Mateus Haas]]></dc:creator>
		<pubDate>Tue, 18 Nov 2014 00:13:12 +0000</pubDate>
		<guid isPermaLink="false">/?p=2339#comment-182768</guid>
		<description><![CDATA[You are a god! Thanks a lot.]]></description>
		<content:encoded><![CDATA[<p>You are a god! Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Spector</title>
		<link>/2011/07/28/oop-javascript-accessing-public-methods-in-private-methods/comment-page-1/#comment-19549</link>
		<dc:creator><![CDATA[David Spector]]></dc:creator>
		<pubDate>Fri, 18 Oct 2013 19:13:02 +0000</pubDate>
		<guid isPermaLink="false">/?p=2339#comment-19549</guid>
		<description><![CDATA[Doesn&#039;t mention prototype. How are variables or functions factored out into the prototype for a constructor? So confusing.]]></description>
		<content:encoded><![CDATA[<p>Doesn&#8217;t mention prototype. How are variables or functions factored out into the prototype for a constructor? So confusing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pratap</title>
		<link>/2011/07/28/oop-javascript-accessing-public-methods-in-private-methods/comment-page-1/#comment-18539</link>
		<dc:creator><![CDATA[pratap]]></dc:creator>
		<pubDate>Fri, 08 Mar 2013 12:09:00 +0000</pubDate>
		<guid isPermaLink="false">/?p=2339#comment-18539</guid>
		<description><![CDATA[It is great article .]]></description>
		<content:encoded><![CDATA[<p>It is great article .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: L3au</title>
		<link>/2011/07/28/oop-javascript-accessing-public-methods-in-private-methods/comment-page-1/#comment-18049</link>
		<dc:creator><![CDATA[L3au]]></dc:creator>
		<pubDate>Thu, 03 Jan 2013 07:17:31 +0000</pubDate>
		<guid isPermaLink="false">/?p=2339#comment-18049</guid>
		<description><![CDATA[In private method &#039;this&#039; refers to the global object, it is &#039;window&#039; in browser or &#039;global&#039; in server, not private method itself.]]></description>
		<content:encoded><![CDATA[<p>In private method &#8216;this&#8217; refers to the global object, it is &#8216;window&#8217; in browser or &#8216;global&#8217; in server, not private method itself.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Larsson</title>
		<link>/2011/07/28/oop-javascript-accessing-public-methods-in-private-methods/comment-page-1/#comment-15755</link>
		<dc:creator><![CDATA[Andrew Larsson]]></dc:creator>
		<pubDate>Thu, 10 May 2012 17:50:54 +0000</pubDate>
		<guid isPermaLink="false">/?p=2339#comment-15755</guid>
		<description><![CDATA[Thank you for the great article. It&#039;s simple about constructors and to the point on OOP. The main reason I came here was to see if the best way to access public methods inside my private functions.]]></description>
		<content:encoded><![CDATA[<p>Thank you for the great article. It&#8217;s simple about constructors and to the point on OOP. The main reason I came here was to see if the best way to access public methods inside my private functions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Lambert</title>
		<link>/2011/07/28/oop-javascript-accessing-public-methods-in-private-methods/comment-page-1/#comment-15723</link>
		<dc:creator><![CDATA[Josh Lambert]]></dc:creator>
		<pubDate>Fri, 04 May 2012 16:40:43 +0000</pubDate>
		<guid isPermaLink="false">/?p=2339#comment-15723</guid>
		<description><![CDATA[This article answered the question I had about accessing a public method from within a private function. Thank you for posting!]]></description>
		<content:encoded><![CDATA[<p>This article answered the question I had about accessing a public method from within a private function. Thank you for posting!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jocosn</title>
		<link>/2011/07/28/oop-javascript-accessing-public-methods-in-private-methods/comment-page-1/#comment-14666</link>
		<dc:creator><![CDATA[jocosn]]></dc:creator>
		<pubDate>Tue, 22 Nov 2011 20:19:19 +0000</pubDate>
		<guid isPermaLink="false">/?p=2339#comment-14666</guid>
		<description><![CDATA[Great, thanks. This aticle is helpful for me.]]></description>
		<content:encoded><![CDATA[<p>Great, thanks. This aticle is helpful for me.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
