Open In App

JavaScript Array isArray() Method

Improve
Improve
Like Article
Like
Save
Share
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. 

JavaScript Array isArray() Method Examples

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.

JavaScript
// JavaScript code for isArray() function
function func() {
    console.log(Array.isArray('foobar'));
}

func();

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.

JavaScript
// JavaScript code for isArray() function
function func() {
    console.log(Array.isArray({ foo: 123 }));
}
func();

Output
false

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

JavaScript
// Array.isArray() method on 1D Array
const arr=[1,2,3,4,5,7,6];
const result=Array.isArray(arr)
console.log(result);


//Array.isArray()   method on nested Array
const num = [1, [4, 9, 16], 25];
const sqRoot = num.map(num => {
    if (Array.isArray(num)) 
    {
        //to iterate over the nested array
        return num.map(innerNum => Math.sqrt(innerNum));
    } else
    {
        return Math.sqrt(num);
    }
});

console.log(sqRoot); // Output: [1, [2, 3, 4], 5]

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:

We have a Cheat Sheet on Javascript where we covered all the important topics of Javascript to check those please go through Javascript Cheat Sheet-A Basic guide to JavaScript


Last Updated : 14 Mar, 2024
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads