-1

How would I execute a number as a function?

3();

And then there is the issue of defining it. How would I do that?

Prolight
  • 380
  • 2
  • 15

1 Answers1

1

Numbers are not allowed to be the first char of your function's name. You could do something like

function _3(){...}
Fabrizio Botalla
  • 697
  • 1
  • 8
  • 25