Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function doHomeWork(subject, callback){
- setTimeout(function() {
- console.log("doing my homework:", subject);
- }, 500);
- callback(); // <==== This should be inside the function above
- }
- doHomeWork("Maths", function() {
- console.log("finished my homework");
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement