Guest User

Untitled

a guest
Jan 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. let x = function() {
  2. console.log('i am called from inside the function');
  3. };
  4.  
  5. let y = function(callback) {
  6. console.log('do something');
  7. callback(); // --> x is executed here
  8. }
  9.  
  10. y(x);
Add Comment
Please, Sign In to add comment