<?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: Writing a linked list in JavaScript</title>
	<atom:link href="http://blog.jcoglan.com/2007/07/23/writing-a-linked-list-in-javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.jcoglan.com/2007/07/23/writing-a-linked-list-in-javascript/</link>
	<description>This dirt was a building before</description>
	<pubDate>Wed, 20 Aug 2008 16:46:17 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>By: James</title>
		<link>http://blog.jcoglan.com/2007/07/23/writing-a-linked-list-in-javascript/#comment-3262</link>
		<dc:creator>James</dc:creator>
		<pubDate>Wed, 13 Aug 2008 07:35:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jcoglan.com/2007/07/23/writing-a-linked-list-in-javascript/#comment-3262</guid>
		<description>Actually JavaScript's Array is a hashtable with numeric keys, and is not a real array or a list. It has a bunch of array-like methods but the underlying implementation is basically a hashtable.</description>
		<content:encoded><![CDATA[<p>Actually JavaScript&#8217;s Array is a hashtable with numeric keys, and is not a real array or a list. It has a bunch of array-like methods but the underlying implementation is basically a hashtable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ayampanggang</title>
		<link>http://blog.jcoglan.com/2007/07/23/writing-a-linked-list-in-javascript/#comment-3250</link>
		<dc:creator>ayampanggang</dc:creator>
		<pubDate>Tue, 05 Aug 2008 14:11:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jcoglan.com/2007/07/23/writing-a-linked-list-in-javascript/#comment-3250</guid>
		<description>sorry for any possible ignorance, but isn't the array in javascript is basically a list simply disguised as array?

thank you</description>
		<content:encoded><![CDATA[<p>sorry for any possible ignorance, but isn&#8217;t the array in javascript is basically a list simply disguised as array?</p>
<p>thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonah Dempcy</title>
		<link>http://blog.jcoglan.com/2007/07/23/writing-a-linked-list-in-javascript/#comment-3170</link>
		<dc:creator>Jonah Dempcy</dc:creator>
		<pubDate>Wed, 14 May 2008 00:39:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jcoglan.com/2007/07/23/writing-a-linked-list-in-javascript/#comment-3170</guid>
		<description>Very cool! I wrote a LinkedList class with MooTools but I wish I would have found this article first. I only implemented a singly-linked list and mostly did it for the sake of a JavaScript challenge, which is to reverse a singly-linked list in place given only the head as a starting point. For the purposes of the challenge, I didn't need to add a full API, but after reading this article I'm inspired to incorporate your append(), insertAfter() and remove() methods.

Here's the article I posted, which includes the LinkedList class written with MooTools:

http://www.thetruetribe.com/2008/05/linkedlist-class-in-mootools.html</description>
		<content:encoded><![CDATA[<p>Very cool! I wrote a LinkedList class with MooTools but I wish I would have found this article first. I only implemented a singly-linked list and mostly did it for the sake of a JavaScript challenge, which is to reverse a singly-linked list in place given only the head as a starting point. For the purposes of the challenge, I didn&#8217;t need to add a full API, but after reading this article I&#8217;m inspired to incorporate your append(), insertAfter() and remove() methods.</p>
<p>Here&#8217;s the article I posted, which includes the LinkedList class written with MooTools:</p>
<p><a href="http://www.thetruetribe.com/2008/05/linkedlist-class-in-mootools.html" rel="nofollow">http://www.thetruetribe.com/2008/05/linkedlist-class-in-mootools.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: patorjk.com &#187; Blog Archive &#187; Javascript Snake</title>
		<link>http://blog.jcoglan.com/2007/07/23/writing-a-linked-list-in-javascript/#comment-3155</link>
		<dc:creator>patorjk.com &#187; Blog Archive &#187; Javascript Snake</dc:creator>
		<pubDate>Mon, 21 Apr 2008 06:08:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jcoglan.com/2007/07/23/writing-a-linked-list-in-javascript/#comment-3155</guid>
		<description>[...] I googled &#8220;Javascript linked list&#8221; for some quick linked list code and came across this link, which is actually pretty nifty. It&#8217;s worth a look if it&#8217;s been a while since [...]</description>
		<content:encoded><![CDATA[<p>[...] I googled &#8220;Javascript linked list&#8221; for some quick linked list code and came across this link, which is actually pretty nifty. It&#8217;s worth a look if it&#8217;s been a while since [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
