Guest User

Untitled

a guest
Dec 15th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. let x function(){
  2. console.log("i am called from inside a function")
  3. };
  4.  
  5. let y = function(callback){
  6. console.log("do something");
  7. callback();
  8. };
  9.  
  10. y(x);
Add Comment
Please, Sign In to add comment