Guest User

Untitled

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