Answers for "how find last of arr"

-2

how to get the last element of an array

//Lets we have a array called arr
let arr = ["s","fg","d"]
//Lets print the last element
print(arr[arr.length-1])
Posted by: Guest on December-05-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language