last item in array javascript code example
Example 1: last element of array javascript
var my_array = /* some array here */;
var last_element = my_array[my_array.length - 1];
Example 2: last element of an array javascript
var myArray = [1, 2, 3, 4];
myArray[myArray.length - 1];
Example 3: javascript last element of an array
var colors = ["red","blue","green"];
var green = colors[colors.length - 1];//get last
Example 4: last item in array javascript
// Find the last item in an array.
arrayName[arrayName.length - 1]
Example 5: last item in array javascript
my_array.slice(-1)[0]
Example 6: last item in array javascript
const array = ['a', 's', 'd', 'f'];
const last = array.pop();
console.log(last); // Returns 'f'
console.log(array); // Returns ['a', 's', 'd']