Answers for "last 12 values of array"

1

get the last item in an array

let array = [0, 1, 2, 3, 4, 5, 6, 7] 
console.log(array.slice(-1));
>>>[7]
console.log(array.slice(-2));
>>>[6, 7]
console.log(array.slice(-3));
>>>[5, 6, 7]
Posted by: Guest on November-21-2020
2

javascript get last element of array

var name = ["jon","tem","kevin", "ramos"];
var lastNameInArray = name[name.length - 1];//  >> ramos
Posted by: Guest on January-08-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language