diff --git a/code/r00tm4n.js b/code/r00tm4n.js new file mode 100644 index 0000000..fc01b24 --- /dev/null +++ b/code/r00tm4n.js @@ -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])); \ No newline at end of file