You could do something like this:
function myArray(){this.push = function(key){ eval("this." + key + " = []");};}
//example
test = new myArray();
//create a few keys
test.push('hey');
test.push('hi');
//add a value to 'hey' key
test['hey'].push('hey value');
// => hey value
alert( test['hey'] );
Take notice that in this example test is not an array but a myArray instance.
If you already have an array an want the values to keys:
function transform(ary){
result= [];
for(var i=0; i< ary.length; i++){result[ary[i]] = [];}
return result;
}
//say you have this array
test = ['hey','hi'];
//convert every value on a key so you have 'ary[key] = []'
test = transform(test);
//now you can push whatever
test['hey'].push('hey value');
// => hey value
alert( test['hey'] );
In this case test remains an array.
Arraywith aheyproperty. – alex Sep 26 '11 at 1:20