+ 1
What is JSON
also, is it related to JS?
4 ответов
+ 16
JSON (JavaScript Object Notation) is a lightweight, readable format for structuring data (objects).
For example:
{
"name": "ykt",
"number": 59
}
+ 3
it's how you send text data over a network, before XML was the choice , but now JSON is dominant format (XML is also used ), can send plain text also
it's nothing but writing data in key / value pairs , as written by Krishna.
it's a common convention, so that different types of application can utilize the data
it comes very handy when you are tweaking open source applications, by just adjusting the .json files
+ 1
nope .json files can be used by any language, not just JavaScript
0
thanks all