how to find the end of an array in javascript code example

Example 1: how to get the end of an array javascript

let arr = [1, 2, 3, 4, 5, 6, 7, 8];
let last = arr.pop();

console.log(last);
//8


console.log("https://discord.gg/5yjWgMS")

Example 2: javascript code for find the last element in array

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

Example 3: last element of array javascript

last element of array

Example 4: javascript array last element

var lastEle = arr.slice(-1)[0];
// or
var lastEle = arr.slice(-1).pop();