Guest User

Untitled

a guest
Jul 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. function logSomething(something) {
  2. console.log(something)
  3. }
  4.  
  5. function caller(func, data) {
  6. return func(data);
  7. }
  8.  
  9. caller(logSomething, 'azaza');
Add Comment
Please, Sign In to add comment