Skip to content

kevinrodrigues/IsArray

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 

Repository files navigation

IsArray

Checks if a value is an array, by returning a boolean value. (Taken from the "Good Parts:JS")

Example 1:

is_array(obj); // false
is_array(data); // true

Example 2 (A more full proof version):

is_arrayForSure(obj);  // false
is_arrayForSure(data);  // true

About

Checks if a value is an array.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published