JSON
- JSON is the most common "language" that servers use to exchange data
- Looks a lot like simplified JavaScript
- No variables, functions, operators, etc. Just data
{
"firstName": "Ryan",
"lastName": "Kadri",
"age": 29,
"isProfessor": true
}
7 / 25