Syntax error How to format JSON string in JavaScript?

How to format JSON string in JavaScript?



To format HSON string in JavaScript, use JSON.stringify() with some parameters. Following is the code −

Example

var details = {
   studentId: 101,
   studentFirstName: 'David',
   studentLastName: 'Miller',
   studentAge:21,
   subjectDetails: {
      subjectId: 'JavaScript_101',
      subjectName: 'Introduction to JavaScript',
   }
};
console.log("Not Pretty JSON Format=")
console.log(JSON.stringify(details));
console.log("Pretty JSON Format=")
console.log(JSON.stringify(details, null, 3));

To run the above program, you need to use the following command −

node fileName.js.

Here, my file name is demo127.js.

Output

This will produce the following output −

PS C:\Users\Amit\JavaScript-code> node demo127.js
Not Pretty JSON Format=
{"studentId":101,"studentFirstName":"David","studentLastName":"Miller","studentAge":21,"subj
ectDetails":{"subjectId":"JavaScript_101","subjectName":"Introduction to JavaScript"}}
Pretty JSON Format={
   "studentId": 101,
   "studentFirstName": "David",
   "studentLastName": "Miller",
   "studentAge": 21,
   "subjectDetails": {
      "subjectId": "JavaScript_101",
      "subjectName": "Introduction to JavaScript"
   }
}
Updated on: 2020-09-10T07:14:36+05:30

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements