Skip to content

Instantly share code, notes, and snippets.

@bondarewicz
Created February 6, 2014 12:15
Show Gist options
  • Save bondarewicz/8843037 to your computer and use it in GitHub Desktop.
Save bondarewicz/8843037 to your computer and use it in GitHub Desktop.
JS: Array even numbers filter
var arr = [4,5,7,8,14,45,76];
function even(a){
return a.filter(function(val){return val%2===0})
}
alert(even(arr));
@CornerstoneII
Copy link

ReferenceError: alert is not defined

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment