I have heard of sites that prettify/beautify JSON. What does it actually mean?
feedback
|
|
This means a more human readable version of it. E.g. the following is valid json, but not well readable:
After prettyfying this could look like this:
| ||||
|
feedback
|
|
You can see a site here that will beautify pasted JSON... Its just makes it more readable, mainly for debugging purposed I would imagine. | |||
|
feedback
|
|
It makes your code pretty, i.e. it indents it, makes sure stuff is aligned in a similar manner, all parenthesis are placed in a similar manner, etc. | |||
feedback
|