Dynamically creating keys in javascript associative array. - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T16:43:35Zhttp://stackoverflow.com/feeds/question/351495http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/351495/dynamically-creating-keys-in-javascript-associative-array0Dynamically creating keys in javascript associative array.Oscar Reyes2008-12-09T01:13:34Z2009-10-19T19:10:28Z
<p>Simple, quick, question.</p>
<p>How can I create dynamically create keys in javascript associative arrays? All the doc I've found so far is to update keys that are already created:</p>
<pre><code> arr['key'] = val;
</code></pre>
<p>I have a string like this " name = oscar " </p>
<p>And I want to endup with something like this:</p>
<pre><code>{ name: 'whatever' }
</code></pre>
<p>That is I split the string and get the first element, and I want to put that in a dict ( asoc arr ).</p>
<p><em>EDIT</em></p>
<p>This is what I have and currently doesn't work ( I guess :S ) </p>
<pre><code>var text = ' name = oscar '
var dict = new Array();
var keyValuePair = text.split(' = ');
dict[ keyValuePair[0] ] = 'whatever';
alert( dict ); // prints nothing.
</code></pre>
<p><em>EDIT 2</em></p>
<p>Aaarggg. I hate re-take a programming languages. I forget the most basic things. It turns out I was filling the dict correctly but didn't knew how to display the values :-B . ... .
Thank you all</p>
http://stackoverflow.com/questions/351495/dynamically-creating-keys-in-javascript-associative-array/351507#3515071Answer by tvanfosson for Dynamically creating keys in javascript associative array.tvanfosson2008-12-09T01:19:02Z2008-12-09T02:00:38Z<p>Use the first example. If the key doesn't exist it will be added.</p>
<pre><code>var a = new Array();
a['name'] = 'oscar';
alert(a['name']);
</code></pre>
<p>Will pop up a message box containing 'oscar'.</p>
<p>Try...</p>
<pre><code>var text = 'name = oscar'
var dict = new Array()
var keyValuePair = text.replace(/ /g,'').split('=');
dict[ keyValuePair[0] ] = keyValuePair[1];
alert( dict[keyValuePair[0]] );
</code></pre>
http://stackoverflow.com/questions/351495/dynamically-creating-keys-in-javascript-associative-array/351523#3515231Answer by MK_Dev for Dynamically creating keys in javascript associative array.MK_Dev2008-12-09T01:28:37Z2008-12-09T01:28:37Z<p>Just a reminder: you won't be able to iterate through the values when adding them in this manner. Looking at your question I am pretty sure you knew this (since you want it to use it as "{ name: 'whatever' }"), but some people may not be aware of this.</p>
http://stackoverflow.com/questions/351495/dynamically-creating-keys-in-javascript-associative-array/351538#3515382Answer by Danny for Dynamically creating keys in javascript associative array.Danny2008-12-09T01:37:24Z2008-12-09T01:37:24Z<p>In response to MK_Dev, one is able to iterate, but not <em>consecutively.</em> (For that obviously an array is needed)</p>
<p>Quick google search brings up <a href="http://www.mojavelinux.com/articles/javascript_hashes.html" rel="nofollow">hash tables in javascript</a></p>
<p>Example code for looping over values in a hash (from aforementioned link):</p>
<pre><code>var myArray = new Array();
myArray['one'] = 1;
myArray['two'] = 2;
myArray['three'] = 3;
// show the values stored
for (var i in myArray) {
alert('key is: ' + i + ', value is: ' + myArray[i]);
}
</code></pre>
http://stackoverflow.com/questions/351495/dynamically-creating-keys-in-javascript-associative-array/351553#3515531Answer by Orion Edwards for Dynamically creating keys in javascript associative array.Orion Edwards2008-12-09T01:47:52Z2008-12-09T01:47:52Z<p>Javascript <em>does not have associative arrays</em>, it has <em>objects</em>.</p>
<p>The following lines of code all do exactly the same thing - set the 'name' field on an object to 'orion'.</p>
<pre><code>var f = new Object(); f.name = 'orion';
var f = new Object(); f['name'] = 'orion';
var f = new Array(); f.name = 'orion';
var f = new Array(); f['name'] = 'orion';
var f = new XMLHttpRequest(); f['name'] = 'orion';
</code></pre>
<p>It looks like you have an associative array because an <code>Array</code> is also an <code>Object</code> - however you're not actually adding things into the array at all, you're setting fields on the object.</p>
<p>Now that that is cleared up, here is a working solution to your example</p>
<pre><code>var text = '{ name = oscar }'
var dict = new Object();
// Remove {} and spaces
var cleaned = text.replace(/[{} ]/g, '');
// split into key and value
var kvp = cleaned.split('=');
// put in the object
dict[ kvp[0] ] = kvp[1];
alert( dict.name ); // prints oscar.
</code></pre>
http://stackoverflow.com/questions/351495/dynamically-creating-keys-in-javascript-associative-array/351723#3517236Answer by Eugene Lazutkin for Dynamically creating keys in javascript associative array.Eugene Lazutkin2008-12-09T03:52:31Z2008-12-09T03:59:45Z<p>Somehow all examples, while work well, are overcomplicated:</p>
<ul>
<li>They use <code>new Array()</code>, which is the overkill (and the overhead) for a simple associative array (AKA dictionary).</li>
<li>The better ones use <code>new Object()</code>. Works fine, but why all this extra typing?</li>
</ul>
<p>This question is tagged "beginner", so let's make it simple.</p>
<p>The uber-simple way to use a dictionary in JavaScript or "Why JavaScript doesn't have a special dictionary object?":</p>
<pre><code>// create an empty associative array (in JavaScript it is called ... Object)
var dict = {}; // huh? {} is a shortcut for "new Object()"
// add a key named fred with value 42
dict.fred = 42; // we can do that because "fred" is a constant
// and conforms to id rules
// add a key named 2bob2 with value "twins!"
dict["2bob2"] = "twins!"; // we use the subscript notation because
// the key is arbitrary (not id)
// add an arbitrary dynamic key with a dynamic value
var key = ..., // insanely complex calculations for the key
val = ...; // insanely complex calculations for the value
dict[key] = val;
// read value of "fred"
val = dict.fred;
// read value of 2bob2
val = dict["2bob2"];
// read value of our cool secret key
val = dict[key];
// change the value of fred
dict.fred = "astra";
// the assignment creates and/or replaces key-value pairs
// change value of 2bob2
dict["2bob2"] = [1, 2, 3]; // any legal value can be used
// change value of our secret key
dict[key] = undefined;
// contrary to popular beliefs assigning "undefined" does not remove the key
// go over all keys and values in our dictionary
for(key in dict){
// for-in loop goes over all properties including inherited properties
// let's use only our own properties
if(dict.hasOwnProperty(key){
console.log("key = " + key + ", value = " + dict[key]);
}
}
// let's delete fred
delete dict.fred;
// fred is removed, the rest is still intact
// let's delete 2bob2
delete dict["2bob2"];
// let's delete our secret key
delete dict[key];
// now dict is empty
// let's replaced it recreating all original data
dict = {
fred: 42,
"2bob2": "twins!"
// we can't add the original secret key because it was dynamic,
// we can only add static keys
// ...
// oh well
temp1: val
};
// let's rename temp1 into our secret key:
if(key != "temp1"){
dict[key] = dict.temp1; // copy the value
delete dict.temp1; // kill the old key
}else{
// do nothing, we are good ;-)
}
</code></pre>
http://stackoverflow.com/questions/351495/dynamically-creating-keys-in-javascript-associative-array/1590505#15905051Answer by Andrea for Dynamically creating keys in javascript associative array.Andrea2009-10-19T19:10:28Z2009-10-19T19:10:28Z<p>Original Code (I added the line numbers so can refer to them):</p>
<p>1 var text = ' name = oscar '</p>
<p>2 var dict = new Array();</p>
<p>3 var keyValuePair = text.split(' = ');</p>
<p>4 dict[ keyValuePair[0] ] = 'whatever';</p>
<p>5 alert( dict ); // prints nothing.</p>
<p>Almost there...
- line 1: you should do a 'trim' on text so it is 'name = oscar'.
- line 3: okay as long as you ALWAYS have spaces around your equal.
might be better to not 'trim' in line 1, use '=' and trim each keyValuePair
- add a line after 3 and before 4:
key = keyValuePair[0];
- line 4: Now becomes:
dict[key] = keyValuePair[1];
- line 5: Change to:
alert( dict['name'] ); // it will print out 'oscar'</p>
<p>What I'm trying to say is that the dict[keyValuePair[0]] does not work, you need to set a string to keyValuePair[0] and use that as the associative key. That is the only way I got mine to work. After you have set it up you can either refer to it with numeric index or key in quotes.</p>
<p>Hope that helps.</p>