Open In App

JavaScript Array isArray() Method

Last Updated : 15 Jul, 2024
Comments
Improve
Suggest changes
1 Like
Like
Report

The isArray() method in JavaScript is used to determine whether a given value is an array or not. This method returns true if the argument passed is an array else it returns false.

Syntax:

Array.isArray(obj);

Parameters:

  • obj: This parameter holds the object that will be tested.

Return value:

This function returns the Boolean value true if the argument passed is an array otherwise it returns false. 

Example 1: Checking if a Value is an Array using Array.isArray()

The code defines a function func() checking if 'foobar' is an array using Array.isArray(). It logs false. 'foobar' isn't an array, confirming the method's accuracy.


Output
false

Example 2: Passing map in isArray() Method

Since the argument passed to the function isArray() is a map therefore this function returns false as the answer.


Output
false

Example 3: Illustration of Array.isArray() Method on nested Array.


Output
true
[ 1, [ 2, 3, 4 ], 5 ]

We have a complete list of Javascript Array methods, to check those please go through this Javascript Array Complete reference article.

Supported Browsers:


Next Article

Similar Reads