Skip to content

Instantly share code, notes, and snippets.

@sandrabosk
Last active July 10, 2020 16:20
Show Gist options
  • Save sandrabosk/44333ba51a6407309bd2dc2fac0543b1 to your computer and use it in GitHub Desktop.
Save sandrabosk/44333ba51a6407309bd2dc2fac0543b1 to your computer and use it in GitHub Desktop.
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