Answers for "get the last array of an array javsacript"

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
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 "get the last array of an array javsacript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language