How to display a JavaScript object in the console
In this tutorial, we are going to learn about how to log or display a JavaScript object in the console.
consider we have an object like this.
const obj ={
a:1,
b:2,
c:3
}Now, if we try to log an object with the text we can see an error.
console.log('This is object'+ obj); // wrong wayThe error might look like this This is object[object Object].
You can solve this error by passing obj as a second argument to the console.log() method.
console.log('This is object', obj); // correct wayOuput:
This is object {a: 1, b: 2, c: 3}

