access the last index in array 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);
console.log("https://discord.gg/5yjWgMS")
Example 2: js array last element get
.slice(-1)[0]
Example 3: how to select last element in a array
if (loc_array[loc_array.length - 1] === 'index.html') {
} else {
}
Example 4: javascript find last element in array
if (loc_array[loc_array.length - 1] === 'index.html') {
} else {
}