Advertisement
Guest User

Untitled

a guest
Aug 24th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. function() {
  2. var a = function(arg) { alert(arg); },
  3. b = function(arg, args) { this[arg].apply(args); },
  4. c = function() { b('a',['hello world'] };
  5. c();
  6. }()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement