🔥Limited Offer: Get 50% OFFon AI & Full Stack Courses🔥
Back to JavaScript Notes
Topic #52

Object Display


How to Display JavaScript Objects?

Displaying a JavaScript object will output [object Object].

Example

// Create an Object

const person = {

  name: "John",

  age: 30,

  city: "New York"

};

let text = person;

Why do I See [object Object]?

[Object Object] appears when you try to put an object (a data structure with properties) into a context where a string is expected.

[Object Object] how JavaScript deals with this situation.

Some solutions to display JavaScript objects are:

  • Displaying the Object Properties by name
  • Displaying the Object Properties in a Loop
  • Displaying the Object using Object.values()
  • Displaying the Object using JSON.stringify()

Displaying Object Properties

The properties of an object can be added in a string:

Example

// Create an Object

const person = {

  name: "John",

  age: 30,

  city: "New York"

};

// Add Properties

let text = person.name + "," + person.age + "," + person.city;

Using a For .. In Loop

The properties of an object can be collected in a loop:

Example

// Create an Object

const person = {

  name: "John",

  age: 30,

  city: "New York"

};

// Build a Text

let text = "";

for (let x in person) {

  text += person[x] + " ";

};

Note: You must use person[x] in the loop. person.x will not work (Because x is the loop variable).


Using Object.values()

Object.values() creates an array from the property values:

// Create an Object

const person = {

  name: "John",

  age: 30,

  city: "New York"

};

// Create an Array

const myArray = Object.values(person);

// Stringify the Array

let text = myArray.toString();

Using Object.entries()

Object.entries() makes it simple to use objects in loops:

Example

const fruits = {Bananas:300, Oranges:200, Apples:500};

let text = "";

for (let [fruit, value] of Object.entries(fruits)) {

  text += fruit + ": " + value + "<br>";

}

Using JSON.stringify()

JavaScript objects can be converted to a string with JSON method JSON.stringify().

JSON.stringify() is included in JavaScript and supported in all browsers.

Note: The result will be a string written in JSON notation: {"name":"John","age":50,"city":"New York"}

Example

// Create an Object

const person = {

  name: "John",

  age: 30,

  city: "New York"

};

// Stringify Object

let text = JSON.stringify(person);

Note: See Also: What are JavaScript Objects? What are Object Properties? What are Object Methods? What is this in Objects? What is an Object Constructor?


Note: Advanced Chapters: JavaScript Object Definitions JavaScript Object Advanced this JavaScript Object Iterations JavaScript Object Getters & Setters JavaScript Object Management JavaScript Object Protection JavaScript Object Prototypes JavaScript Object Reference

Want to go beyond the notes?

Join CodingNow 2.0's JavaScript course — live mentorship, real projects, and 100% placement support.

Enroll Now — Free Demo Available

Object Display – FAQs

Quick answers about learning Object Display in JavaScript.

This free note from CodingNow 2.0 explains Object Display in JavaScript — concept, syntax and worked code examples you can copy, run and revise before interviews.
Yes. Every JavaScript topic on CodingNow 2.0, including Object Display, is 100% free with no signup required.
With focused practice, most students grasp Object Display in 1–3 days from these notes; pairing it with CodingNow 2.0's mentor-led course takes you to job-ready depth faster.
Use the code examples in this note, then ask doubts for free on the CodingNow 2.0 Community (/community) — expert instructors answer within 24 hours.
WhatsApp
Call NowEnroll Now