Please look into the example code below
var temp = {
load:function(x) {
//using x need to initialized an object or call a function
//example object name xConf.We need to do concatenate also
var obj=x+'Conf';
new obj(); // not working
global.obj.add() // not working
}
};
Looking forward for your suggestions.