get last of array js code example
Example 1: find last element in array javascript
const numArray = [1,2,3,4,5];
const lastNumber = numArray.reverse()[0];
Example 2: js get last array element
const array = [1, 2, 3, 4]
const lastArrayElement = array[array.length - 1]