Answers for "how to convert json string to json object in node js"

3

node string to json

const json = '{"result":true, "count":42}';
const obj = JSON.parse(json);
Posted by: Guest on April-08-2021

Code answers related to "how to convert json string to json object in node js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language