<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Comments on snippet: 'Simple hash table (associate array) in JavaScript'</title>
    <description>Snipplr comments feed</description>
    <link>https://ipv6.snipplr.com/</link>
    <lastBuildDate>Wed, 22 Apr 2026 02:56:52 +0000</lastBuildDate>
    <item>
      <title>birdspider said on 11/Jan/2010</title>
      <link>https://ipv6.snipplr.com/view/5122/simple-hash-table-associate-array-in-javascript</link>
      <description>&lt;p&gt;&lt;code&gt;&#13;
var a = new AArray('a','b');  &#13;
console.assert(a.get('a') == 'b');  &#13;
var a1 = new AArray('a','c');  &#13;
console.assert(a.get('a') == 'b');  &#13;
console.assert(a1.get('a') == 'c');  &#13;
&lt;/code&gt;&#13;
&#13;
line 4 assertion will fail, somehow the 2nd instance influences the first one, I've tried this with my own HashTable class, same results&#13;
&#13;
what do I (we) have overlooked ?&#13;
&#13;
regards&lt;/p&gt;</description>
      <pubDate>Mon, 11 Jan 2010 10:21:48 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/5122/simple-hash-table-associate-array-in-javascript</guid>
    </item>
  </channel>
</rss>
