Answers for "last item in an array js"

1

last element from list javascript

const lastItem = colors[colors.length - 1]
Posted by: Guest on June-19-2020
1

last element of an array

int[] array = {1,2,3};
System.out.println(array[array.length - 1]);
Posted by: Guest on July-05-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language