A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

本帖最后由 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();
~~~~~黑马出品,必是精品~~~~~

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马