Answers for "how to get last element"

3

check if is the last element in list python

if x == my_list[-1]:
    # do what you want
Posted by: Guest on August-28-2020
-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 "how to get last element"

Code answers related to "Javascript"

Browse Popular Code Answers by Language