
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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" } }
Advertisements