I've found here is a good explication of the difference between run-time functions and parse-time ones. Bit what i'm trying to do is something like this
var funtionName = 'functionInside';
var start = function(){
var a = function(){doSomething();}
return {functionInside:a}
};
And i want to call function 'functionInside' with the variable, something like
start.window[funtionName]()
Thanks in advance!