Skip to content

Instantly share code, notes, and snippets.

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