Skip to content

Instantly share code, notes, and snippets.

@deepal
Created February 19, 2020 23:14
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 deepal/d6f5a079b1f6ced462c67c632bf128bb to your computer and use it in GitHub Desktop.
Save deepal/d6f5a079b1f6ced462c67c632bf128bb to your computer and use it in GitHub Desktop.
const sum = (a, b, callback) => {
callback(a + b);
};
sum(1,2, (result) => {
console.log(result);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment