SyntaxFix
Write A Post
Hire A Developer
Questions
Here's how you would do this in JavaScript, this is a really efficient way to do it!
let data = "{ "name": "mark"}" let object = JSON.parse(data); console.log(object.name);
this would print mark