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