I want this to work:
I have defined a function:
function callback_1() {
// Do something
}
I have a callback string that defines a callback:
var functionString = 'callback_' + 1 + '()';
I want to make that string actually call the function callback_1 How do I do that?