Js Json Objects
# JSON Objects
* * *
## Object Syntax
## Example
{"name":"tutorial", "alexa":10000, "site":null}
JSON objects are written inside curly braces {...}.
Objects can contain multiple **key/value** pairs.
key must be a string, value can be a valid JSON data type (string, number, object, array, boolean, or null).
key and value are separated by a colon :.
Each key/value pair is separated by a comma ,.
!(#)
* * *
## Accessing Object Values
You can use the dot . to access object values:
## Example
var myObj, x; myObj = {"name":"
YouTip