Answers for "how to decode json data in node js"

2

node string to json

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

javascript json decode

var jsonPerson = '{"first_name":"billy", "age":23}';
var personObject = JSON.parse(jsonPerson); //parse json string into JS object
Posted by: Guest on July-23-2019

Code answers related to "Javascript"

Browse Popular Code Answers by Language