-
-
Save skyitachi/2c0c078d1f6defb7fd5b4b74eb9d8562 to your computer and use it in GitHub Desktop.
Revisions
-
myshov revised this gist
Apr 2, 2017 . No changes.There are no files selected for viewing
-
myshov created this gist
Apr 2, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ console.log(1); (_ => console.log(2))(); eval('console.log(3);'); console.log.call(null, 4); console.log.apply(null, [5]); new Function('console.log(6)')(); Reflect.apply(console.log, null, [7]) Reflect.construct(function(){console.log(8)}, []); Function.prototype.apply.call(console.log, null, [9]); Function.prototype.call.call(console.log, null, 10); new (require('vm').Script)('console.log(11)').runInThisContext();