JSON
Introduction JSON stands for JavaScript Object Notation is one of most import scripting language. It is a lightweight text-based open standard designed for human-readable data interchange. JSON file contains .json extension. JSON contains concept of key/value pair like concept of mapping in Java. In case of JSON its object holds key/value pair. Each key of JSON is taken as a String but value of JSON is of any type. Each key and value is separated by Commas. What is JSON JSON stands for JavaScript Object Notation. It was designed by Dougals Crockford. It saves with .json extension. It was designed for human-readable data interchange. JSON supports array, object, String, number and values . JSON is easy to read and write than XML. JSON is language independent . Note: Because of JSON supports data structures like object and array. So it is easy to write and read data from JSON. Difference Between JSON and XML JSON XML Stands for JavaScript Object Not...