Skip to content

Instantly share code, notes, and snippets.

@rafaelmaeuer
Created December 13, 2016 09:46
Show Gist options
  • Save rafaelmaeuer/46bcd89778808531e0a7ce0c1d8dd9c2 to your computer and use it in GitHub Desktop.
Save rafaelmaeuer/46bcd89778808531e0a7ce0c1d8dd9c2 to your computer and use it in GitHub Desktop.
function tryMe (param1, param2) {
alert(param1 + " and " + param2);
}
function callbackTester (callback) {
callback (arguments[1], arguments[2]);
}
callbackTester (tryMe, "hello", "goodbye");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment