Node.js examples for Array:Last Element
Get Last Array Index
function getLastArrayIndex ( array ) { return array.length - 1; }