Is Array Empty - Node.js Array

Node.js examples for Array:Array Operation

Description

Is Array Empty

Demo Code


function isArrayEmpty ( array )
{
  return array.length === 0;
}

Related Tutorials