Skip to content

Instantly share code, notes, and snippets.

@sunkibaek
Last active March 21, 2022 01:15
Show Gist options
  • Save sunkibaek/08ff03232e830f45c9f199a44d5f323a to your computer and use it in GitHub Desktop.
Save sunkibaek/08ff03232e830f45c9f199a44d5f323a to your computer and use it in GitHub Desktop.
const simpleCallback = () => {
console.log("== Inside of callback!");
};
const main = (callback) => {
console.log("== Inside of main!");
callback();
};
main(simpleCallback);
// == Inside of main!
// == Inside of callback!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment