Get Last Array Index - Node.js Array

Node.js examples for Array:Last Element

Description

Get Last Array Index

Demo Code


function getLastArrayIndex ( array )
{
  return array.length - 1;
}

Related Tutorials