var aaa = new Object;
var bbb = 2;
var ccc = 5;
aaa[bbb].description = differentObject.ccc.description;
console.log(aaa.bbb.description); //will report "undefined"
what I need, is to create a property "description" for each new value of bbb and assign a value to it inside the object aaa. (in my code, this, except the declaration of aaa) runs in a loop and bbb, ccc values change with each cycle).