Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

js get last element of an array

const arr = [5, 3, 2, 7, 8];
const last = arr.at(-1);
console.log(last);
/*
Output: 8
*/
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #js #element #array
ADD COMMENT
Topic
Name
6+2 =