
ISRO CS Original Papers and Official Keys.


Full Stack Development with React & Node JS(Live).Java Programming - Beginner to Advanced.Data Structure & Algorithm-Self Paced(C++/JAVA).Data Structures & Algorithms in JavaScript.Data Structure & Algorithm Classes (Live).If you don't want to change the array, the slice() method can be used. You can use it if you are fine with modifying the array. Let us now use all three methods on an array to get the last element and check which method is the fastest let arry = Ĭonsole.timeEnd('array length property') Īs you can see, the pop() method is fastest. This method changes the length of the array. The pop() method pops/removes the last element of an array, and returns it. Providing one index value returns the element at that position & a negative index value calculates the index from the end of the array. The slice() method does not modify the existing array. This method selects the elements starting at the given start index and ends at the given end index excluding the element at the end index.

The slice() method returns specific elements from an array, as a new array object. Therefore the last element's index would be array length-1. The reason we are subtracting 1 from the length is, in JavaScript, the array index numbering starts with 0. Subtracting 1 from the length of an array gives the index of the last element of an array using which the last element can be accessed. The length property returns the number of elements in an array.
