Skip to content

Instantly share code, notes, and snippets.

@nazrdogan
Created August 2, 2017 10:20
Show Gist options
  • Save nazrdogan/14323173c8999615fcbffeb801db2d33 to your computer and use it in GitHub Desktop.
Save nazrdogan/14323173c8999615fcbffeb801db2d33 to your computer and use it in GitHub Desktop.
function makeSomething(a, callback){
callback(a);
}
makeSomething(3,function(value){
console.log("value --> "+value);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment