Checks if the given argument is an array - Node.js Array

Node.js examples for Array:Array Operation

Description

Checks if the given argument is an array

Demo Code


function is_array(k){return (k instanceof Array);}

Related Tutorials