Better Programming

Advice for programmers.

Follow publication

Member-only story

What Is [object Object] in JavaScript: Object.prototype.toString

Moon
Better Programming
Published in
7 min readNov 29, 2019
Photo by Ilya Pavlov on Unsplash

Whilst working as a JavaScript developer, you might have used the toString method or heard of it at least.

And, if you are passionate to contribute your experiences to an open-source GitHub project, you would also have some opportunities to see how they check an argument’s type.

One day, I saw something that was quite weird — [object Object]. Um, I had no clue what it meant when I saw it for the first time.

I thought it was some sort of console mistake when printing data out, so I used to use console.dir, instead of console.log for objects.

Then, I saw this from MDN:

“Every object has a toString() method that is automatically called when the object is to be represented as a text value or when an object is referred to in a manner in which a string is expected.”

Prerequisites

To better understand what this post will talk about, you should know what prototype and prototype chain are in JavaScript.

TL;DR

Object.prototype.toString is a method that prints out the name of the class that you passed into toString.

There are several values you can get from it, based on ECMAScript’s specifications. This could be helpful when you check the type of a class of your object.

Types of JavaScript Objects

toString is a method for representing …what?

To understand what the heck this means, you should know what data types JavaScript has. Basically, JavaScript has seven primitive data types and other types, Object.

Some of them are instances of Object, and some aren’t. What toString prints out with each…

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Moon
Moon

Written by Moon

Frontend React w/ Typescript developer based in S.Korea. Interested in UX/Testing/FE. mgyang95@gmail.com

Responses (3)

Write a response