增强的Function构造函数(Increased Capabilities of the Function Constructor)
在Javascript中Function构造函数可以让你创建一个新函数,不过这个功能并不经常使用。Function构造函数接收函数参数和函数体作为参数,参数都必须是字符串。下面是一个例子:
var add = new Function("first", "second", "return first+second");
console.log(add(1, 1)); // 2