Answers for "convert { } string to object"

11

string to object

const json = '{ "fruit": "pineapple", "fingers": 10 }';
const obj = JSON.parse(json);
console.log(obj.fruit, obj.fingers);
Posted by: Guest on May-20-2020

Code answers related to "convert { } string to object"

Code answers related to "Javascript"

Browse Popular Code Answers by Language