I have such array component which prints out Good.
console.log(nameA_componentA['abc'].aaa);
But now I want to print it out like this
var ccc='componentA';
console.log(nameA_+ccc['abc'].aaa);
But it's not working unfortunately :( Where is my mistake ?