select last element in javascript code example
Example 1: javascript take last element of array
let array = [1,2,3,4,5];
let lastElement = array.pop();
// array -> [1,2,3,4];
// lastElement = 5;
Example 2: js array last element get
.slice(-1)[0]