Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

What is JSON? #1

Open
ndd115 opened this issue Mar 13, 2015 · 0 comments
Open

What is JSON? #1

ndd115 opened this issue Mar 13, 2015 · 0 comments
Labels

Comments

@ndd115
Copy link
Contributor

ndd115 commented Mar 13, 2015

javascript object string basically
{ “name”: “Nicole”, “birthdate”: “unsure”, “age”: 30}
• Data format/Way to model data exchange when passing between two systems
• Way to use human-readable text (usually via the web) to represent that data
• Does not need to learn how a database is structure – ex: read a text file that said "{ users: [ { name: 'nicole', email: '[email protected]' } ] }
• Closer to the pure meaning of the information which lowers the cognitive overhead for people reading it and working with it
• Primarily useful in web browser – used as sort of plumbing tool for building web applications that connect multiple systems, databases, and browsers
• Browsers can read/write JSON easily – Compare: https://www.hivehome.com/hive-active-heating TO https://www.hivehome.com/hive-active-heating.json
• Also ref: http://json.org/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants