Answers for "node convert object to json"

3

node string to json

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

Javascript object to JSON string

var person={"first_name":"Tony","last_name":"Hawk","age":31};
var personJSONString=JSON.stringify(person);
Posted by: Guest on July-23-2019

Code answers related to "node convert object to json"

Code answers related to "Javascript"

Browse Popular Code Answers by Language