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

var myArray = [1, 2, 3, 4];
myArray[myArray.length - 1];

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

let arr = ['a', 'b', 'c']
arr.slice(-1)[0] // returns last element in an array

Example 5: last element from list javascript

const lastItem = colors[colors.length - 1]

Example 6: last element of an array

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

Tags:

Java Example