Answers for "find the last elemnt in array"

3

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]
Posted by: Guest on August-14-2020

Code answers related to "find the last elemnt in array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language