赞
踩
利用:Function 构造函数创建一个新的 Function 对象。
//new Function ([arg1[, arg2[, ...argN]],] functionBody)
const sum = new Function('a', 'b', 'return a + b');
console.log(sum(2, 6));//8
参数:
arg1, arg2, ... argN
functionBody
let str = `function bar(){
console.log('执行了')
}`
let fun = new Function('return ' + str)
fun()()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。