how to refer to the last element in the array in js code example
Example 1: javascript get last element of array
var array = [1,2,3,4,5,6];
var val = array[array.length - 1]; // 6
Example 2: javascript get last element in array
this = array[array.length - 1];