-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilter-function.js
40 lines (33 loc) · 909 Bytes
/
filter-function.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//it works like MAP function.
//we can use anonnymous and arrow functions
//PURPOSE OF THIS FUNCTION:-
/*
//1.CREATE AN ARRAY
let arr = [2, 22, 34, 455, 876,87]; //NOW IF WE WANT TO FILTER THIS ARRAY, WE USE FILTER FUNCTION like, filter numbers which are greater than 40.
//2.call the filter function
//let arr1 = arr.filter(function(val){
//return val > 40;
//}); //with anonymous function
let arr1 = arr.filter(val =>
val > 40);
console.log(arr1); //[455, 876, 87] with arrow function
*/
/*
//2.CREATE AN ARRAY OF OBJECTS:-
let team = [{
name:"VC",
position:"Software Engineer"
},{
name:"BB",
position:"developer"
},{
name:"KK",
position:"writer"
},{
name:"VB",
position:"developer"
}]; //HERE FILTER DEVELOPERS
//NOW,
let developer = team.filter(val => val.position == "developer");
console.log(developer);
*/