Skip to content

Instantly share code, notes, and snippets.

@JiLiZART
Forked from myshov/function_invocation.js
Created June 18, 2017 20:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JiLiZART/5558cfd20d3e41b71186fa0f6ea2bc2b to your computer and use it in GitHub Desktop.
Save JiLiZART/5558cfd20d3e41b71186fa0f6ea2bc2b to your computer and use it in GitHub Desktop.
11 Ways to Invoke a Function
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();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment