Answer: The following example gives detailed explanation on this:
Example:
It creates a function called square with argument x and returns x multiplied by itself.
var square = new Function ("x","return x*x");
Asked In: Many Interviews |
Alert Moderator