Skip to content

Instantly share code, notes, and snippets.

@PantherHawk
Last active February 21, 2017 13:14
Show Gist options
  • Save PantherHawk/177df973920e855d03f5176c1dd074a1 to your computer and use it in GitHub Desktop.
Save PantherHawk/177df973920e855d03f5176c1dd074a1 to your computer and use it in GitHub Desktop.
function divide(x, y) {
return x / y;
}
function changeArrayElements(array, action) {
for (var i = 0; i < array.length; i++) {
action(array[i]);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment