Skip to content

Instantly share code, notes, and snippets.

@AliSawari
Created June 4, 2019 14:02
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 AliSawari/eb35a207870040b59a4e34686441806d to your computer and use it in GitHub Desktop.
Save AliSawari/eb35a207870040b59a4e34686441806d to your computer and use it in GitHub Desktop.
example
function double(number, callback){
if(number > 2){
callback(null, number * 2)
} else {
callback(new Error("number should be more than 2"))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment