JSON Define and Defination
What is JSON? JSON stands for JavaScript Object Notation is an open stand file format for sharing data. Web developers easily write and understand the JSON file data. It helps exchange data between the browser(client) and server, that time JSON data must be in text based on key-value pairs. It use the .json extension when it is standing alone. Why user JSON? JSON using text format and its easy to understand, it also sent to server and received from the server in readable format. Useful for any programming language like javascript, PHP, etc. 1. It’s Lightweight 2. Easy to write/ read 3. Language Independent 4. Integrated easily with most of the languages 5. Text based. JSON Data Type 1. String : JSON String written in double qutoes. 2. Number : JSON Number be an integer and not written in double qutoes like string. 3. Object : JSON Object are written inside of curly ({ }) braces. 4. Array : JSON Array are written inside of square ([ ]) braces. 5. Boolean : Ture or False 6.