Skip to content

Commit de2a98a

Browse files
committed
example code for filter fix: #9
1 parent 81483f0 commit de2a98a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

All Lessons/filter.js

+10
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)