Skip to content

Instantly share code, notes, and snippets.

@jjcall
Created November 8, 2011 16:29
Show Gist options
  • Save jjcall/1348257 to your computer and use it in GitHub Desktop.
Save jjcall/1348257 to your computer and use it in GitHub Desktop.
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