how to console.log json in javascript code example
Example 1: console.log object to json
console.log(JSON. stringify(obj)) //Read Object
Example 2: 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"}