-
Notifications
You must be signed in to change notification settings - Fork 17
json
Pierre edited this page Aug 12, 2014
·
3 revisions
- Json is a simple format which is a sub part of JavsScript objects. It means JavaScript Object Notation
- Each key of the object must be a string
- Valid JSON:
{
"key": "value",
"person": {
"firstName": "Steve",
"lastName": "Jobs",
"age": 56
}
}
- Simple structure
- Light on the network exchanges
- JSON objects are JavaScript objects => Native interpretation inside browsers.
[next](https://raw.githubusercontent.com/wiki/KleeGroup/focus/server-side/controller.md)