Skip to content

Instantly share code, notes, and snippets.

@deedubs
Created October 7, 2011 13:53
Show Gist options
  • Select an option

  • Save deedubs/1270331 to your computer and use it in GitHub Desktop.

Select an option

Save deedubs/1270331 to your computer and use it in GitHub Desktop.
var sayHello = function(name, callback) {
callback("Hello " + name);
}
sayHello('Dan Williams', function(helloString){
console.log(helloString);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment