Is this possible?
So I need to have an array with a dynamic name and content what can be extended and accessed.
object = {};
var two = ['thing', 'thing2'];
for(one in two){
object[two[one]] = [];
}
If yes but not in this way, then how?
|
Is this possible? So I need to have an array with a dynamic name and content what can be extended and accessed.
If yes but not in this way, then how? |
|||
|
This is definitely doable, just make sure that the object owns the property and it's not inherited from higher up in the prototype chain:
|
|||||
|
|
|||
|
|
Arraywithfor-inis considered bad practice; use a C-styleforloop or useArray.prototype.forEachif available. – strager Nov 23 '10 at 21:11onevariable, unless you havevar oneelsewhere in your function. Best practice for iterating properties of an object isfor (var prop in obj){ if (obj.hasOwnProperty(prop)){ ... } }. – Phrogz Nov 23 '10 at 21:15