Skip to content

Instantly share code, notes, and snippets.

@elc49
Created April 19, 2017 16:52
Show Gist options
  • Save elc49/8cbdec037c17d5c7942591171c8c92cd to your computer and use it in GitHub Desktop.
Save elc49/8cbdec037c17d5c7942591171c8c92cd to your computer and use it in GitHub Desktop.
function sum_even(a){
var sum = 0;
for (var i = 0; i < a.length; i++){
if(a[i] % 2 === 0){
sum += a[i];
}
}
return sum;
}
@profnandaa
Copy link

This looks good with me!

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