How to Check if a Value is an Object in JavaScript

avatar
Borislav Hadzhiev

Last updated: Mar 4, 2024
4 min

banner

# Check if a Value is an Object in JavaScript

To check if a value is an object:

  1. Verify the value has a type of object - typeof variable === 'object'.
  2. Verify the value is not null - variable !== null.
  3. Verify the value is not an array - !Array.isArray(variable).
  4. If all conditions pass, the value is an object.
index.js
function isObject(value) { return ( typeof value === 'object' && value !== null && !Array.isArray(value) ); } const variable = {name: 'bobby hadz'}; if (isObject(variable)) { // ๐Ÿ‘‡๏ธ this runs console.log('โœ… Value is an object'); } else { console.log('โ›”๏ธ Value is not an object'); }

check if value is an object

The code for this article is available on GitHub

The isObject() function takes a value as a parameter and returns true if the value is an object and false otherwise.

index.js
function isObject(value) { return ( typeof value === 'object' && value !== null && !Array.isArray(value) ); } console.log(isObject({})); // ๐Ÿ‘‰๏ธ true console.log(isObject([])); // ๐Ÿ‘‰๏ธ false console.log(isObject('bobbyhadz.com')); // ๐Ÿ‘‰๏ธ false

defining reusable function

We used the logical AND (&&) operator to chain 3 conditions in a single if statement.

All conditions have to pass for the if block to run.

The first condition uses the typeof operator to check if a value has a type of "object".

The typeof operator returns a string that indicates the type of a value.

Here are some examples.

index.js
console.log(typeof {}); // ๐Ÿ‘‰๏ธ "object" console.log(typeof []); // ๐Ÿ‘‰๏ธ "object" console.log(typeof null); // ๐Ÿ‘‰๏ธ "object" console.log(typeof function () {}); // ๐Ÿ‘‰๏ธ "function" console.log(typeof (() => {})); // ๐Ÿ‘‰๏ธ "function" console.log(typeof ''); // ๐Ÿ‘‰๏ธ "string" console.log(typeof 0); // ๐Ÿ‘‰๏ธ "number"
The code for this article is available on GitHub

Notice that an array and a null value also have a type of "object".

To make sure the value doesn't store an array or null, we have to add 2 additional checks.

Our second condition checks that the value is not equal to null.

index.js
const variable = {name: 'bobby hadz'}; if ( typeof variable === 'object' && variable !== null && !Array.isArray(variable) ) { // ๐Ÿ‘‡๏ธ this runs console.log('โœ… Value is an object'); } else { console.log('โ›”๏ธ Value is not an object'); }

And the third condition checks that the value is not an array.

If all of the conditions are met, the value is an object.

All of the following 3 values have a type of object:

  • an object literal {}
  • an array []
  • a null value

# Check if a Value is an Object using Object.prototype.toString()

An alternative approach is to use the prototype property on the Object type.

index.js
// ๐Ÿ‘‡๏ธ true console.log( Object.prototype.toString.call({}) === '[object Object]', ); // ๐Ÿ‘‡๏ธ false console.log( Object.prototype.toString.call([]) === '[object Object]', ); // ๐Ÿ‘‡๏ธ false console.log( Object.prototype.toString.call(null) === '[object Object]', );

check if value is object using object prototype tostring

The code for this article is available on GitHub

We called to toString() method on the prototype, passing it an object, an array and null.

The names of all 3 are different when stringified:

index.js
// ๐Ÿ‘‡๏ธ๏ธ "[object Object]" console.log(Object.prototype.toString.call({})); // ๐Ÿ‘‡๏ธ "[object Array]" console.log(Object.prototype.toString.call([])); // ๏ธ๐Ÿ‘‡๏ธ "[object Null]" console.log(Object.prototype.toString.call(null));

This makes it a viable solution because we don't have to chain 3 conditions to get the result.

However, I still prefer the first approach because it is more readable and intuitive.

You can also define a reusable function.

index.js
function isObject(value) { return ( Object.prototype.toString.call(value) === '[object Object]' ); } if (isObject({name: 'bobby hadz'})) { // ๐Ÿ‘‡๏ธ this runs console.log('The value is an object'); } else { console.log('The value is not an object'); } console.log(isObject({})); // ๐Ÿ‘‰๏ธ true console.log(isObject([])); // ๐Ÿ‘‰๏ธ false console.log(isObject(null)); // ๐Ÿ‘‰๏ธ false console.log(isObject('bobbyhadz.com')); // ๐Ÿ‘‰๏ธ false

define reusable isobject function

The code for this article is available on GitHub

It's best to avoid hardcoded strings like [object Object] because they leak implementation details, they are prone to errors and are difficult to debug.

# Don't use the instanceof operator to check if a value is an object

You shouldn't use the instanceof operator to check if a value is an object.

Here are some examples.

index.js
console.log({} instanceof Object); // ๐Ÿ‘‰๏ธ true console.log(Object.create(null) instanceof Object); // ๐Ÿ‘‰๏ธ false console.log(null instanceof Object); // ๐Ÿ‘‰๏ธ false console.log([] instanceof Object); // ๐Ÿ‘‰๏ธ true console.log('hello' instanceof Object); // ๐Ÿ‘‰๏ธ false console.log(new Date() instanceof Object); // ๐Ÿ‘‰๏ธ true

The instanceof operator doesn't work for objects created using the Object.create() method.

The operator also returns true for arrays.

The behavior of the instanceof operator is confusing when checking if a value is an object and should be avoided.

# Don't use the lodash.isObject method to check if a value is an object

The lodash.isObject() method checks if a value is of type Object.

The method returns true for arrays, functions, objects, regexes, etc.

index.js
import _ from 'lodash'; console.log(_.isObject({})); // ๐Ÿ‘‰๏ธ true console.log(_.isObject([1, 2, 3])); // ๐Ÿ‘‰๏ธ true console.log(_.isObject(null)); // ๐Ÿ‘‰๏ธ false console.log(_.isObject(new Date())); // ๐Ÿ‘‰๏ธ true
The code for this article is available on GitHub

This approach doesn't work if you need to check if a value is an object literal.

The only reliable way to check if a value is an object is to check that:

  1. The value has a type of "object".
  2. The value is not null.
  3. The value is not an array.
index.js
function isObject(value) { return ( typeof value === 'object' && value !== null && !Array.isArray(value) ); } console.log(isObject({})) // ๐Ÿ‘‰๏ธ true console.log(isObject([])) // ๐Ÿ‘‰๏ธ false console.log(isObject(null)) // ๐Ÿ‘‰๏ธ false console.log(isObject('bobbyhadz.com')) // ๐Ÿ‘‰๏ธ false

If all 3 conditions are met, then the value is an object.

You can define a reusable function like the one above and place it in your utils.js file.

If you have to check if a value is an object literal, import the function and call it.

The function returns true if the value is an object and false otherwise.

# Additional Resources

You can learn more about the related topics by checking out the following tutorials:

I wrote a book in which I share everything I know about how to become a better, more efficient programmer.
book cover
You can use the search field on my Home Page to filter through all of my articles.

Copyright ยฉ 2024 Borislav Hadzhiev