<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Comments on snippet: 'Simple hash table (associate array) in JavaScript'</title>
<link>http://snipplr.com</link>
<description>Snipplr comments feed'</description>
<language>en-us</language>
<pubDate>Thu, 23 May 2013 02:52:39 GMT</pubDate>
<item>
<title>birdspider said on 1/11/10</title>
<link>http://snipplr.com/view/5122/simple-hash-table-associate-array-in-javascript/</link>
<description><![CDATA[ <code>
var a = new AArray('a','b');  
console.assert(a.get('a') == 'b');  
var a1 = new AArray('a','c');  
console.assert(a.get('a') == 'b');  
console.assert(a1.get('a') == 'c');  
</code>

line 4 assertion will fail, somehow the 2nd instance influences the first one, I've tried this with my own HashTable class, same results

what do I (we) have overlooked ?

regards ]]></description>
<pubDate>Mon, 11 Jan 2010 10:21:48 GMT</pubDate>
<guid>http://snipplr.com/view/5122/simple-hash-table-associate-array-in-javascript/</guid>
</item>
</channel>
</rss>