DEFINE JSON
WHAT IS JSON?
JSON stands for JavaScript Object Notation. It is a lightweight data format used for storing and transporting data, often utilized when data is sent from a server to a web page. JSON is text-only and "self-describing," making it easy to understand. The format is syntactically identical to the code for creating JavaScript objects, which allows data to be easily converted into native JavaScript objects. JSON's human-readable text format stores and transmits data objects consisting of attribute-value pairs and arrays or other serializable values.
Comments
Post a Comment