<?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: Javascript object literal namespacing</title>
	<atom:link href="http://www.brainonfire.net/blog/javascript-object-literal-namespace/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brainonfire.net/blog/javascript-object-literal-namespace/</link>
	<description>Tim McCormack, distilled</description>
	<lastBuildDate>Fri, 03 Feb 2012 04:07:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: M A Hossain Tonu</title>
		<link>http://www.brainonfire.net/blog/javascript-object-literal-namespace/comment-page-1/#comment-41845</link>
		<dc:creator>M A Hossain Tonu</dc:creator>
		<pubDate>Tue, 14 Sep 2010 10:24:04 +0000</pubDate>
		<guid isPermaLink="false">http://brainonfire.net/2006/07/06/javascript-object-literal-namespace/#comment-41845</guid>
		<description>Just updated my post using your post.(didn&#039;t found trackbackURI :( ) My post on the same topic is here:

&quot;JavaScript Object Literal Namespacing&quot;
http://mahtonu.wordpress.com/2010/04/13/javascript-object-literal-namespacing/</description>
		<content:encoded><![CDATA[<p>Just updated my post using your post.(didn't found trackbackURI :( ) My post on the same topic is here:</p>
<p>"JavaScript Object Literal Namespacing"<br />
<a href="http://mahtonu.wordpress.com/2010/04/13/javascript-object-literal-namespacing/" rel="nofollow">http://mahtonu.wordpress.com/2010/04/13/javascript-object-literal-namespacing/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JavaScript Object Literal Namespacing &#171; Crying Glowing Sun</title>
		<link>http://www.brainonfire.net/blog/javascript-object-literal-namespace/comment-page-1/#comment-41842</link>
		<dc:creator>JavaScript Object Literal Namespacing &#171; Crying Glowing Sun</dc:creator>
		<pubDate>Tue, 14 Sep 2010 08:53:15 +0000</pubDate>
		<guid isPermaLink="false">http://brainonfire.net/2006/07/06/javascript-object-literal-namespace/#comment-41842</guid>
		<description>[...] Tim McCormack on Javascript object literal namespacing [...]</description>
		<content:encoded><![CDATA[<p>[...] Tim McCormack on Javascript object literal namespacing [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: paul</title>
		<link>http://www.brainonfire.net/blog/javascript-object-literal-namespace/comment-page-1/#comment-17835</link>
		<dc:creator>paul</dc:creator>
		<pubDate>Mon, 19 Nov 2007 22:17:09 +0000</pubDate>
		<guid isPermaLink="false">http://brainonfire.net/2006/07/06/javascript-object-literal-namespace/#comment-17835</guid>
		<description>in regard to eduardo lundgren&#039;s problem. here is my solution to making instances of objects/classes

&lt;pre class=&quot;code&quot; lang=&quot;javascript&quot;&gt;var RequestsList = function(){
	var RequestsL = {
		changed: false,
		list:[],
		add: function(player){
			RequestsL.list.push(player);
			changed = true;
		},
		print: function(){
			output(RequestsL.list);
		}
	};
	return RequestsL;
};


var requests = new RequestsList();
var requests2 = new RequestsList();&lt;/pre&gt;

i hope that this helps people who want to use object literal notation.</description>
		<content:encoded><![CDATA[<p>in regard to eduardo lundgren's problem. here is my solution to making instances of objects/classes</p>
<pre class="code" lang="javascript">var RequestsList = function(){
	var RequestsL = {
		changed: false,
		list:[],
		add: function(player){
			RequestsL.list.push(player);
			changed = true;
		},
		print: function(){
			output(RequestsL.list);
		}
	};
	return RequestsL;
};

var requests = new RequestsList();
var requests2 = new RequestsList();</pre>
<p>i hope that this helps people who want to use object literal notation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DaCoder</title>
		<link>http://www.brainonfire.net/blog/javascript-object-literal-namespace/comment-page-1/#comment-1141</link>
		<dc:creator>DaCoder</dc:creator>
		<pubDate>Thu, 21 Sep 2006 23:51:25 +0000</pubDate>
		<guid isPermaLink="false">http://brainonfire.net/2006/07/06/javascript-object-literal-namespace/#comment-1141</guid>
		<description>Eduardo,
Ajile might be what you&#039;re looking for. Take a look at http://ajile.iskitz.com/

Look at the Examples section and the API &amp; FAQs section for details.</description>
		<content:encoded><![CDATA[<p>Eduardo,<br />
Ajile might be what you're looking for. Take a look at <a href="http://ajile.iskitz.com/" rel="nofollow">http://ajile.iskitz.com/</a></p>
<p>Look at the Examples section and the API &amp; FAQs section for details.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DerekAllard.com &#187; Blog Archive &#187; Javascript object literal namespacing</title>
		<link>http://www.brainonfire.net/blog/javascript-object-literal-namespace/comment-page-1/#comment-735</link>
		<dc:creator>DerekAllard.com &#187; Blog Archive &#187; Javascript object literal namespacing</dc:creator>
		<pubDate>Tue, 29 Aug 2006 12:00:24 +0000</pubDate>
		<guid isPermaLink="false">http://brainonfire.net/2006/07/06/javascript-object-literal-namespace/#comment-735</guid>
		<description>[...] Tim McCormack has an excellent summary of Javascript object literal namespacing. [...]</description>
		<content:encoded><![CDATA[<p>[...] Tim McCormack has an excellent summary of Javascript object literal namespacing. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim McCormack</title>
		<link>http://www.brainonfire.net/blog/javascript-object-literal-namespace/comment-page-1/#comment-505</link>
		<dc:creator>Tim McCormack</dc:creator>
		<pubDate>Sun, 06 Aug 2006 17:47:48 +0000</pubDate>
		<guid isPermaLink="false">http://brainonfire.net/2006/07/06/javascript-object-literal-namespace/#comment-505</guid>
		<description>Hmm, I haven&#039;t considered how to use namespaces to organize classes -- I&#039;ve ony used it to organize functions and constants.</description>
		<content:encoded><![CDATA[<p>Hmm, I haven't considered how to use namespaces to organize classes -- I've ony used it to organize functions and constants.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

