Don't fully understand what you're trying to achieve but it sounds to me that you need to parse the json string and then you will be able to access the properties on the object.

const json = '{"name": "🐳"}';

const object = JSON.parse(json);

console.log(object.name);

--> output: 🐳

Hope this helps! 💜

Reply to this note

Please Login to reply.

Discussion

🙏🏽🙏🏽🙏🏽