writing a function that returns the last value in an array 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];