javascript last element 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: javascript last element of array

arr.slice(-1)[0]

Example 3: Javascript get last item in array

var colors = ["red","blue","green"];
var green = colors[colors.length - 1]; //get last item in the array

Example 4: last item in array javascript

// Find the last item in an array.
arrayName[arrayName.length - 1]

Example 5: js array last element

array.slice(-1)[0]

Example 6: get last item of array javascript

get last item of array javascript