last value of an array code example

Example 1: get last item in array

let array = [1,2,3,4,5]

let sliced = array.slice(-1)[0]

//OR

let popped = array.slice(-1).pop()

//OR

let lengthed = array[array.length - 1]

Example 2: get the last item in an array

let array = [0, 1, 2, 3, 4, 5, 6, 7] 
console.log(array.slice(-1));
>>>[7]
console.log(array.slice(-2));
>>>[6, 7]
console.log(array.slice(-3));
>>>[5, 6, 7]

Example 3: get the last element of array javascript

if (loc_array[loc_array.length - 1] === 'index.html') {
   // do something
} else {
   // something else
}

Tags:

Java Example