Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. console.log("one!");
  2. }, Math.random() * 1000);
  3. }
  4. function logTwo () { setTimeout(function() {
  5. console.log("two!");
  6. }, Math.random() * 1000);
  7. }
  8.  
  9. function inOrder (callback1, callback2) {
  10. setTimeout(function(){
  11. logTwo()
  12. }, 1000);
  13. callback1();
  14. }
  15.  
  16. inOrder(logOne, function() {
  17. logTwo();
  18. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement