黑马程序员技术交流社区

标题: [上海前端]前端开发:11种调用一个函数的方法 [打印本页]

作者: sh_mwx    时间: 2017-8-25 15:30
标题: [上海前端]前端开发:11种调用一个函数的方法
本帖最后由 sh_mwx 于 2017-8-25 15:31 编辑

1、
console.log(1);
2、
(_ => console.log(2))();
3、
eval('console.log(3);');
4、
console.log.call(null, 4);
5、
console.log.apply(null, [5]);
6、
new Function('console.log(6)')();
7、
Reflect.apply(console.log, null, [7])
8、
Reflect.construct(function(){console.log(8)}, []);
9、
Function.prototype.apply.call(console.log, null, [9]);
10、
Function.prototype.call.call(console.log, null, 10);
11、
new (require('vm').Script)('console.log(11)').runInThisContext();
~~~~~黑马出品,必是精品~~~~~






欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2