js how to check first element of array and last element of aray is equal of not code example
Example 1: javascript last element of array
let arr = [1,2,3]
arr[arr.length - 1] //returns last element in an array
Example 2: last item in array javascript
// Find the last item in an array.
arrayName[arrayName.length - 1]