Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function doHomeWork(subject, callback){
  2.     setTimeout(function() {
  3.         console.log("doing my homework:", subject);
  4.     }, 500);
  5.     callback(); // <==== This should be inside the function above
  6. }
  7.  
  8. doHomeWork("Maths", function() {
  9.     console.log("finished my homework");
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement