JSON is a lightweight data interchange format. It is easy for humans to read and write.For more in-depth information, you can visit json official website
what JSON stands for?
JavaScript Object Notation
Who (invented | created ) JSON? When JSON is created?
Douglas Crockford, 2001
Can JSON start with an array?
The answer is yes, JSON can start with an array a square bracket
Can JSON use single quotes?
The answer is no, we must use double quotes, using a single quote is an error in JSON syntax
Can JSON have comments?
The answer is no, JSON is a data-only format
What are the data types supported by JSON?
Data formats supported by JSON are: Number, String, Boolean, Array, Object, Null
How to convert JSON to JavaScript object?To convert JSON to JavaScript object you can use the JSON.parse function, but make sure to a correct JSON syntax