
Array.isArray() – Determines whether the passed value is an Array.
๐ Syntax
bool = Array.isArray(value);
๐งช Example
Array.isArray([]); // true
Array.isArray() – Determines whether the passed value is an Array.
bool = Array.isArray(value);
Array.isArray([]); // true
Comments
Post a Comment