javascript - associative array without toString, etc... - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T13:57:59Zhttp://stackoverflow.com/feeds/question/367440http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/367440/javascript-associative-array-without-tostring-etc1javascript - associative array without toString, etc...Claudiu2008-12-15T03:58:41Z2008-12-15T13:33:11Z
<p>I want to create an associative array:</p>
<pre><code>var aa = {} //equivalent to Object(), new Object(), etc...
</code></pre>
<p>and I want to be sure that any key I access is going to be a number:</p>
<pre><code>aa['hey'] = 4.3;
aa['btar'] = 43.1;
</code></pre>
<p>I know JS doesn't have typing, so I can't automatically check this, but I can ensure in my own code that I only assign strings to this aa. </p>
<p>Now I'm taking keys from the user. I want to display the value for that key. However, if the user gives me something like "toString", he'll get back a function, not an int! Is there any way to make sure any string he gives me is only something I define? Is the only solution something like:</p>
<pre><code>delete aa['toString'];
delete aa['hasOwnProperty'];
</code></pre>
<p>etc...</p>
http://stackoverflow.com/questions/367440/javascript-associative-array-without-tostring-etc/367453#3674533Answer by Moss Collum for javascript - associative array without toString, etc...Moss Collum2008-12-15T04:10:56Z2008-12-15T04:10:56Z<p>One possibility would be to use hasOwnProperty to check that the key is something you explicitly added to the array. So instead of:</p>
<pre><code>function findNumber(userEnteredKey) {
return aa[userEnteredKey];
}
</code></pre>
<p>you'd say:</p>
<pre><code>function findNumber(userEnteredKey) {
if (aa.hasOwnProperty(userEnteredKey))
return aa[userEnteredKey];
}
</code></pre>
<p>Alternately, you could use typeof to check that anything is a number before returning it. But I like the hasOwnProperty approach, because it'll keep you from returning anything that you didn't intentionally put in the array.</p>
http://stackoverflow.com/questions/367440/javascript-associative-array-without-tostring-etc/367454#3674543Answer by some for javascript - associative array without toString, etc...some2008-12-15T04:12:08Z2008-12-15T13:33:11Z<p>Will this work for you?</p>
<pre><code>function getValue(id){
return (!isNaN(aa[id])) ? aa[id] : undefined;
}
</code></pre>
<p><strong>Update:</strong></p>
<p>With the help from <em>Moss Collum</em> and <em>pottedmeat</em> I recommend this generic solution:</p>
<pre><code>function getValue(hash,key) {
return Object.prototype.hasOwnProperty.call(hash,key) ? hash[key] : undefined;
}
</code></pre>
<p><strong>Update2:</strong>
Had forgot the ".call". (thanks pottedmeat for pointing that out)</p>
<p><strong>Update3:</strong> (About the key)</p>
<p>Note the following: The key will internally be converted to a string because the key is actually a name of an attribute. </p>
<pre><code>var test = {
2:"Defined as numeric",
"2":"Defined as string"
}
alert(test[2]); //Alerts "Defined as string"
</code></pre>
<p>If trying to use an object:</p>
<pre><code>var test={}, test2={};
test[test2]="message"; //Using an object as a key.
alert(test[test2]); //Alerts "message". Looks like it works...
alert(test[ test2.toString() ]);
//If it really was an object this would not have worked,
// but it also alerts "message".
</code></pre>
<p>Now that you know that it is always a string, lets use it:</p>
<pre><code>var test={};
var test2={
toString:function(){return "some_unique_value";}
//Note that the attribute name (toString) don't need quotes.
}
test[test2]="message";
alert(test[ "some_unique_value"] ); //Alerts "message".
</code></pre>
http://stackoverflow.com/questions/367440/javascript-associative-array-without-tostring-etc/368296#3682961Answer by annakata for javascript - associative array without toString, etc...annakata2008-12-15T13:02:27Z2008-12-15T13:02:27Z<p>Really simple answer: when you create a new key prepend it with some string constant of your own. </p>
<pre><code>var a = {};
var k = 'MYAPP.COLLECTIONFOO.KEY.';
function setkey(userstring)
{
a[k+userstring] = 42;
}
function getkey(userstring)
{
return a[k+userstring];
}
</code></pre>