Introduction to JavaScript Array Methods
Push Method in Arrays
Output
[1, 2, 3, 4, 5, 6, 7]
Pop Method in Arrays
Output
[1, 2, 3, 4, 5]
indexOf method in Arrays
Output
2
lastIndexOf method in Arrays
Output
5
Finding length of an Array
Output
6
reverse method in Arrays
Output
[6, 5, 4, 3, 2, 1]
shift method in Arrays
Output
1
slice method in Arrays
Output
[2, 3]
Output
[2, 4, 3, 5, 6]
sort method in Arrays
Output
[1, 2, 3, 4, 5, 6]
splice method in Arrays
Output
[1, 2, 5, 6]
Output
[1, 2, 88, 99, 4, 3, 5, 6]
Output
[1, 2, 88, 99, 5, 6]
toString method in Arrays
Output
6