Guest User

Untitled

a guest
Oct 21st, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function eins(cb) {
  2.         setTimeout(function() {
  3.                 console.log("Erster");
  4.         cb();
  5.         }, 100);
  6. }        
  7.                                                                                                                                                            
  8. function zwei() {
  9.         console.log("Zweiter");
  10. }
  11.  
  12. eins(zwei);
Add Comment
Please, Sign In to add comment