Skip to content

Instantly share code, notes, and snippets.

@PantherHawk
Created February 21, 2017 12:35
Show Gist options
  • Save PantherHawk/56bd8666d98562164ca7cd3b148b7142 to your computer and use it in GitHub Desktop.
Save PantherHawk/56bd8666d98562164ca7cd3b148b7142 to your computer and use it in GitHub Desktop.
function(x, y) {
return x / y;
}
function (array, callback) {
array.forEach(callback(element) {
});
};
function (callback, array) {
array.forEach(callback(element) {
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment