Learnitweb

Category: JSON

  • JSON Data Types

    JSON data types are: Null Number String Boolean Array Object Null Null is used to indicate that a data value does not exist, it is missing or that we do not know. A lack of value is not the same thing as a value of zero or empty string. Null is also not the same…

  • JSON syntax

    A very simple example of JSON is: Key-value pair or name-value pair syntax of JSON JSON starts with { (left brace). JSON ends with } (right brace). Keys in JSON are string in double quotes. Key and value in JSON is separated by : (colon). Each key-value pair in JSON is separated by , (comma).…

  • JSON – An Introduction

    JSON stands for (JavaScript Object Notation). The word JavaScript may mislead people that JavaScript is required to learn JSON. But this is not true. JavaScript here is in name because JSON is based on a subset of JavaScript. JSON is a lightweight data interchange format. Another commonly used data interchange format is XML. JSON is…