nodejs convert string to json code example

Example 1: node string to json

const json = '{"result":true, "count":42}';
const obj = JSON.parse(json);

Example 2: javascript parse json

var jsonPerson = '{"first_name":"billy", "age":23}';
var personObject = JSON.parse(jsonPerson); //parse json string into JS object

Example 3: convert data into json format in javascript

Use the JavaScript function JSON.parse() to convert text into a JavaScript object:
var obj = JSON.parse('{ "name":"John", "age":30, "city":"New York"}');

Example 4: js string to object

JSON.parse()