I just had a quick question about assigning a mathematical operator to a JavaScript variable.
So I have a variable called mathFunction like below...
var Mathfunction;
If I want to apply an actual mathematical operator would I just do something like this?
var Mathfunction = +; Or var Mathfunction = '+';
Any advice for this would be greatly appreciated!