show/hide this revision's text 6 fix replace

Use the first example. If the key doesn't exist it will be added.

var a = new Array();
a['name'] = 'oscar';
alert(a['name']);

Will pop up a message box containing 'oscar'.

Try...

var text = 'name = oscar'
var dict = new Array();
Array()
var keyValuePair = text.replace(' ','').split('=');
/ /g,'').split('=');
dict[ keyValuePair[0] ] = keyValuePair[1];
alert( dict[keyValuePair[0]] );
show/hide this revision's text 5 remove comment

Use the first example. If the key doesn't exist it will be added.

var a = new Array();
a['name'] = 'oscar';
alert(a['name']);

Will pop up a message box containing 'oscar'.

Try...

var text = 'name = oscar'
var dict = new Array();
var keyValuePair = text.replace(' ','').split('=');
dict[ keyValuePair[0] ] = keyValuePair[1];
alert( dict[keyValuePair[0]] );
// prints nothing.
show/hide this revision's text 4 restored

Use the first example. If the key doesn't exist it will be added.

var a = new Array();
a['name'] = 'oscar';
alert(a['name']);

Will pop up a message box containing 'oscar'.

Try...

var text = 'name = oscar';
oscar'
var dict = eval( new Array();
var keyValuePair = text.replace(' {' + text.replace(/\s*=s*/,': "').replace(/ *$/,'" }') ,'').split('=');
dict[ keyValuePair[0] ] = keyValuePair[1];
alert( dict[keyValuePair[0]] ); 

The basic idea is that you make it look like '{ name: "oscar" }' which defines the associative array, then evaluate that expression and assign// prints nothing.

show/hide this revision's text 3 fixed
show/hide this revision's text 2 sample based on edit
show/hide this revision's text 1