javascript console.log properties code example
Example 1: console.log object object
const language = this.converstaionLanguage; // {"lang":"en"} <- this is JSON
console.log(language); // [object Object]
console.log(JSON.stringify(language) // {"lang":"en"}
Example 2: cosnsole.log without obj object
console.log(JSON.stringify(myObject, null, 4));