Skip to content

Instantly share code, notes, and snippets.

@web-zen
Created August 21, 2009 00:00
Show Gist options
  • Save web-zen/171530 to your computer and use it in GitHub Desktop.
Save web-zen/171530 to your computer and use it in GitHub Desktop.
function multiplyByTwo(a, b, c, callback) {
var i, ar = [];
for(i = 0; i < 3; i++) {
ar[i] = callback(arguments[i] * 2);
}
return ar;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment