Skip to content

Instantly share code, notes, and snippets.

@addisaden
Created January 25, 2013 00:13
Show Gist options
  • Select an option

  • Save addisaden/4630064 to your computer and use it in GitHub Desktop.

Select an option

Save addisaden/4630064 to your computer and use it in GitHub Desktop.
function hallo(name) {
alert('Hallo, ' + name + '!');
}
function welt(callback_function) {
callback_function('Welt');
}
welt(hallo); // => alert("Hallo, Welt!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment