Last active
July 10, 2020 16:20
-
-
Save sandrabosk/44333ba51a6407309bd2dc2fac0543b1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function study(what, cb){ | |
// setTimeout(function(){ | |
console.log(`I am studying ${what}.`); | |
cb(); | |
// }, 3000) | |
} | |
function chill(){ | |
console.log(`Finished with studying, now chilling.`); | |
} | |
study('JavaScript', chill); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment