Guest User

Untitled

a guest
Nov 20th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. function f1 () {console.log ("1");}
  2. function f2 () {console.log ("2");}
  3. function f3 () {console.log ("3");}
  4. function call (a) {a ();}
  5.  
  6. var f = [f1, f2, f3];
  7.  
  8. call (f[2]);
Add Comment
Please, Sign In to add comment