Skip to content

Instantly share code, notes, and snippets.

@kjessec
Created January 24, 2019 03:17
Show Gist options
  • Save kjessec/372541fabd2539b62b8310611d288e1a to your computer and use it in GitHub Desktop.
Save kjessec/372541fabd2539b62b8310611d288e1a to your computer and use it in GitHub Desktop.
function hello(callback) {
callback('World')
}
hello(function(str) {
console.log('Hello', str);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment