Skip to content

Instantly share code, notes, and snippets.

@coltpini
Created May 5, 2017 21:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coltpini/af5dfe76035a81dd1d63146a308285c1 to your computer and use it in GitHub Desktop.
Save coltpini/af5dfe76035a81dd1d63146a308285c1 to your computer and use it in GitHub Desktop.
const someFunction = (callback) => {
//do some stuff
callback();
}
someFunction( () => {
// something to run that is getting passed into the function I am calling.
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment