How would I execute a number as a function?
3();
And then there is the issue of defining it. How would I do that?
How would I execute a number as a function?
3();
And then there is the issue of defining it. How would I do that?
Numbers are not allowed to be the first char of your function's name. You could do something like
function _3(){...}