Skip to content

Instantly share code, notes, and snippets.

@zacharyhill
Created September 9, 2017 23:10
Show Gist options
  • Save zacharyhill/f043ed50943964c892c1860ec9f0572c to your computer and use it in GitHub Desktop.
Save zacharyhill/f043ed50943964c892c1860ec9f0572c to your computer and use it in GitHub Desktop.
function every(array, callbackFunction) {
var doesEveryElementMatch = true;
array.forEach(function(element) {
doesEveryElementMatch = callbackFunction(element);
});
return doesEveryElementMatch;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment