Function JavaScript Tutorial

The syntax for this type of function is more like the declaration of a variable.

var varName = new Function(argument1,...,lastArgument);
The keyword Function is used to create a new function dynamically from the arguments.
All of the arguments must be strings, and the last argument should always contain the functionality of the function.