Published
- 1 min read
console.log object object
The solution for this is noted below
console.log object object
Solution
const language = this.converstaionLanguage; // {"lang":"en"} <- this is JSON
console.log(language); // [object Object]
console.log(JSON.stringify(language) // {"lang":"en"}
Try other methods by searching on the site. That is if this doesn’t work