The following example illustrates thisIt creates a function called square with argument x and returns x multiplied by itself.
var square = new Function (“x”,”return x*x”);
The following example illustrates thisIt creates a function called square with argument x and returns x multiplied by itself.
var square = new Function (“x”,”return x*x”);