last element array 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 an array

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

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: how to get last item in array javascript

let nums = [1,2,3,4,5];
let lastOne = nums.pop();
// -> lastOne = 5
// -> nums = [1,2,3,4];

Example 5: javascipt get last element of array

const arr = [1,2,3] ;
console.log(arr[arr.length - 1]);

Example 6: last element of an array

int[] array = {1,2,3};
System.out.println(array[array.length - 1]);