JSON data types

JSON Syntax:

JSON syntax is a subset of the JavaScript object notation syntax. JSON syntax has following rules:
1. Data is represented in name/value pairs.
2. Data is separated by commas.
3. Curly braces hold objects and each object name is followed by colon.
4. Square brackets hold arrays.

JSON example:

{"students":[	
    {"firstName":"Sandy", "lastName":"Sethi"},
    {"firstName":"Roxy", "lastName":"Malik"},
    {"firstName":"Sunil", "lastName":"Antil"}
]}

JSON datatypes:

Data TypeDescription
NumberIt represents double-precision floating-point format in JavaScript
StringIt represents double-quoted Unicode with backslash escaping
BooleanIt represents true or false
ArrayIt represents an ordered sequence of values
Valueit can be a string, a number, true or false, null etc
ObjectIt represents an unordered collection of key:value pairs
WhitespaceIt can be used between any pair of tokens
nullIt represents empty

 
Next Topic: How to create json object from string in javascript?
Previous Topic: JSON overview.

 

Content Protection by DMCA.com
Please Share