What I want is to create a function whose name will come from the content of one of my variables.
Example :
var myFunctionName = "tryAgain";`
[tryAgain]
|
|
|
function myFunctionName() {
alert('Try Again !');
};