Skip to content

Instantly share code, notes, and snippets.

@weizman
Last active April 16, 2020 16:23
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 weizman/f7452a3c3c256385b3e6c241e6f87156 to your computer and use it in GitHub Desktop.
Save weizman/f7452a3c3c256385b3e6c241e6f87156 to your computer and use it in GitHub Desktop.
var f = (e, t) => {
return (5, 6) + 2;
}
var e = function () {
return f(8,8) + 4;
}
window['a b'] = function () {
return e(5, 7);
}
var c = function () {
return window['a b'](7, 8);
}
var b = (e, t) => {
return 456, c(5, 6) + 2;
}
function a() {
return b(3, 4) + 3;
}
var res = a(1, 2) + 4;
console.log(res);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment