display the position of the last item in an array javascript code example
Example: find last element in array javascript
const numArray = [1,2,3,4,5];
const lastNumber = numArray.reverse()[0];
const numArray = [1,2,3,4,5];
const lastNumber = numArray.reverse()[0];