# How to check if Variable is an Array in JavaScript

Here's a Code Recipe to check whether a variable or value is either an array or not. You can use the Array.isArray() method. For older browser, you can use the polyfill πŸ‘

const variable = ['🍝', '🍜', '🍲'];

// βœ… NEWER BROWSER
Array.isArray(variable);

// πŸ•° OLDER BROWSER
Object.prototype.toString.call(variable) === '[object Array]';

# Modern way to check Array

The best way to check Array is by using the built-in Array.isArray() πŸ‘

Array.isArray([]); // true
Array.isArray(['🍝']); // true
Array.isArray(new Array('🍝')); // true

# Browser Support

The support for Array.isArray() is actually pretty good πŸ‘

Browser
Chrome βœ…
Firefox βœ…
Safari βœ…
Edge βœ…
Internet Explorer 9 βœ…

# Polyfill for Older Browsers

If you need older browser support, then you can use this MDN polyfill.

if (!Array.isArray) {
  Array.isArray = function(arg) {
    return Object.prototype.toString.call(arg) === '[object Array]';
  };
}

# Other Ways using Lodash or Underscore

If you're using an external library, they also have some built-in methods too πŸ‘

Lodash

Checks if value is classified as an Array object.

const array = ['🍝', '🍜', '🍲'];
const notArray = 'not array';

_.isArray(array); // true
_.isArray(notArray); // false

Underscore

Returns true if object is an Array.

const array = ['🍝', '🍜', '🍲'];
const notArray = 'not array';

_.isArray(array); // true
_.isArray(notArray); // false

Yes, the syntax is the same as Lodash πŸ€“

# Why can't we use typeof?

Often, we want to check the type of a value, we simply use typeof

typeof 'string'; // 'string'
typeof 100; // 'number'
typeof true; // 'boolean'
typeof false; // 'boolean'
typeof function() {}; // 'function'
typeof {}; // 'object'

typeof []; // 'object' <-- 😱

The problem is that Array is actually under the umbrella of Objects data type. So typeof is indeed returning truthfully. Unfortunately, that isn't really helpful for us who just want to check if the value is an array or not πŸ™Š

# typeof Table

Type Example Return
String typeof "hello" "string"
Boolean typeof true
typeof false
"boolean"
Number typeof 100 "number"
Undefined "undefined"
Function typeof function() {} "function"
Null typeof null "object"
Non-Primitive typeof {}
typeof []
"object"

# Primitives

MDN: Primitive is data type that is not an object and has no methods. All primitives are immutable (ie. they can't be altered). They are stored by value

In JavaScript, there are 6 data types that are primitives.

  1. string
  2. number
  3. bigint
  4. boolean
  5. undefined
  6. symbol

# Non-Primitives (Objects)

MDN: Object refers to a data structure containing data and instructions for working with the data. They are stored by reference

Although I call it "non-primitivies", these are called Objects. (I personally prefer it as the former, because my brain when speaking of objects, typically rings up {} 😳)

  1. object
  2. array
  3. function

Although when we use typeof on function, it returns "function", it is actually an object.

MDN: It is done as a special shorthand for Functions, though every Function constructor is derived from Object constructor.

So why didn't the shorthand extends to array, I don't know πŸ€·β€β™€οΈ But at least they're trying to redeem themselves with the built-in method Array.isArray() πŸ˜…

# Code Buster πŸ‘©β€πŸ”¬

I've received a lot of different solutions that people have suggested we can use to check Array. At first glance, they seem like great solutions. But unfortunately, there are some problems or edge cases that make them not ideal. So let's do some code busting πŸ’‰

# Problem with Array.length

const array = ['🍝', '🍜', '🍲'];

array.length; // 3

😷 So if an array has a length, we can assume that it's an array?

πŸ‘©β€βš•οΈ Unfortunately, the problem with this solution is that there are other data types that have lengths ie. strings. So this can lead to false positive.

const string = 'not array';

string.length; // 9

Even an object can have length property if we set it 😱

const object = { length: 2 };
const array = ['🍝', '🍜', '🍲'];

typeof array === 'object' && Boolean(array.length); // true
typeof object === 'object' && Boolean(object.length); // true <-- 😱

⚠ Of course, there are a lot more problems with this -- this wouldn't work on checking an empty array because 0 is considered false. Anyways, TLDR; just use Array.isArray() πŸ‘ Doctor's order πŸ‘©β€βš•οΈ

# Problem with instanceof

const array = ['🍝', '🍜', '🍲'];

array instanceof Array; // true

πŸ‘©β€βš•οΈThis is a common solution that I see people reference too. Honestly, it's a good one. In many cases, this will work as expected. BUT, there is a gotcha on this! It doesn't work with multiple contexts (e.g. frames or windows). Because each frame has different scopes with its own execution environment. Thus, it has a different global object and different constructors. So if you try to test an array against that frame's context, it will NOT return true, it will return incorrectly as false.

const frameNode = document.createElement('iframe'); // Create an iframe Element Node
document.body.appendChild(frameNode); // Append our frame element
const frameBrowser = window.frames[window.frames.length - 1]; // Access the frame from our current window
frameArray = frameBrowser.Array; // Access the "Array" object of the frame we created

// Create a new Array in our frame environment
const newFrameArray = new frameArray('🍝', '🍜', '🍲');

newFrameArray instanceof Array; // ❌ false

Array.isArray(newFrameArray); // βœ… true

# Problem with constructor

const array = ['🍝', '🍜', '🍲'];

array.constructor === Array; // true

πŸ‘©β€βš•οΈ This is another really good solution. Unfortunately, this suffers the same issue as instanceof. It also doesn't work with multiple contexts.

// ...

newFrameArray.constructor === Array; // ❌ false

Array.isArray(newFrameArray); // βœ… true

# Community Input

  • @fabiokounang: One of the example may be if you are making a dynamic table, so if it is an array you want to loop the array and output it in the table, but if it is just an object, you can loop by its keys using Object.keys first and then loop all the key and value.

  • This is great to use with conditional. If it's an array, you want to perform some action and if it isn't you want to do something else.

# References


Related Tidbits