Skip to content

Instantly share code, notes, and snippets.

@Zensavona
Created October 29, 2012 05:22
Show Gist options
  • Select an option

  • Save Zensavona/3971721 to your computer and use it in GitHub Desktop.

Select an option

Save Zensavona/3971721 to your computer and use it in GitHub Desktop.
For Pete
function say(word) {
console.log(word);
}
function execute(someFunction, value) {
someFunction(value);
}
execute(say, "Hello");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment