r00tm4ker

This commit is contained in:
Micha Tab 2018-10-11 07:17:32 +03:00 committed by Luke Oliff
parent 9178a27eda
commit 70771bd631
1 changed files with 11 additions and 0 deletions

11
code/r00tm4n.js Normal file
View File

@ -0,0 +1,11 @@
var even = function (arr) {
var count;
for (var i = 0; i < arr.length; i++) {
if (arr[i]%2 == 0) {
count ++;
}
}
return even;
}
console.log(even([1,2,3,4,5,6,7,8,9]));