Answers for "access the last element of an array javascript"

38

javascript last element of array

let arr = [1,2,3]
arr[arr.length - 1] //returns last element in an array
Posted by: Guest on June-16-2020
10

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];
Posted by: Guest on May-08-2020
2

js array last element get

.slice(-1)[0]
Posted by: Guest on July-13-2020
0

how to get last element of array in javascript

if (locArray.at(-1) === 'index.html') {
   alert('gaziza')
} else {
   // something else
}
Posted by: Guest on February-04-2022

Code answers related to "access the last element of an array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language