-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharrays.js
More file actions
79 lines (41 loc) · 903 Bytes
/
arrays.js
File metadata and controls
79 lines (41 loc) · 903 Bytes
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
let arr=["Fan","Camera",34,null,true];
// Array Methods
console.log(arr.length);
arr.shift();
console.log(arr);
const newLen = arr.unshift("HII");
console.log(newLen);
console.log(arr);
d=[1,4,6,43,34224];
console.log(d);
d.sort();
console.log(d);
// String methods
let str = "Hii bro how are you?";
console.log(str.length);
console.log(str.indexOf("bro"));
console.log(str.slice(1,3));
console.log(str.replace("Hii","Halo"));
*/
let num=[1,2,3,4,7]
let b= num.toString()
console.log(b,typeof b)
let c= num.join("_")
console.log(c, typeof c)
// Map method
let marr = [45,23,29]
marr.map((value,index,array) =>{
console.log(value,index,array)
})
//Filter method
let marr2 = [23,1,4,90,83,0,76];
let a2 = marr2.filter((value)=>{
return value<10
})
console.log(a2);
//Reduce method
let n = marr2.reduce((i,j)=>{
return i+j
})
console.log(n)