last lenght of array js code example
Example 1: last element of array javascript
var my_array = /* some array here */;
var last_element = my_array[my_array.length - 1];
Example 2: javascipt get last element of array
const arr = [1,2,3] ;
console.log(arr[arr.length - 1]);