- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path23_array_properties_method.js
More file actions
Latest commit
46 lines (35 loc) · 1.13 KB
/
Copy path23_array_properties_method.js
File metadata and controls
46 lines (35 loc) · 1.13 KB
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
// Array method properties
letname=['edward','newgate','shirohige'];
// length
console.log(name.length);//3
console.log(name[name.length-1]);//shirohige
console.log();
// concat for combine
console.log('Concat');
letnewMember=['ace','marco','kurohige'];
constmergeMember=name.concat(newMember);
console.log(mergeMember);
console.log();
// reverse
console.log('Reverse');
console.log(mergeMember.reverse());
// unshift - add array shanks on the beginning
console.log('unshift');
console.log(mergeMember.unshift('shanks'),mergeMember);
// shift - remove array shanks on the beginning
console.log('shift');
console.log(mergeMember.shift(),mergeMember);
// push - add array lutfi on the end
console.log();
console.log('push');
console.log(name.push('lutfi','zoro','sanji'),name);
// pop - remove array on the end
console.log('pop');
console.log(name.pop(),name);//remove sanji
console.log(name.pop(),name);//remove Zoro
// splice
console.log();
console.log('splice');
console.log(name);
console.log(name.splice(0,3),name);//start index 0: edward and will stop on 3 :shirohige will remove, resulut lutfi
console.log(name);