We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81483f0 commit de2a98aCopy full SHA for de2a98a
All Lessons/filter.js
@@ -0,0 +1,10 @@
1
+//filter out the even nubers inside array
2
+
3
+const arr = [5, 1, 3, 2, 6];
4
5
+function isEven(y){
6
+ return y % 2 === 0;
7
+}
8
9
+const output = arr.filter(isEven);
10
+console.log(output);
0 commit comments