$30 off During Our Annual Pro Sale. View Details »
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
JSON Crash Course
Search
lvandeyar
March 03, 2015
Technology
1
5.9k
JSON Crash Course
A talk I gave to my co-workers about JSON on March 3rd, 2015.
lvandeyar
March 03, 2015
Tweet
Share
More Decks by lvandeyar
See All by lvandeyar
Ansible Training - Part 1 - Introduction
lvandeyar
0
6.1k
SDDC2370 - VMware Integrated OpenStack - VMWorld 2014
lvandeyar
0
6.9k
Other Decks in Technology
See All in Technology
プロダクト負債と歩む持続可能なサービスを育てるための挑戦
sansantech
PRO
1
1.1k
都市スケールAR制作で気をつけること
segur
0
210
なぜフロントエンド技術を追うのか?なぜカンファレンスに参加するのか?
sakito
3
700
[続・営業向け 誰でも話せるOCI セールストーク] AWSよりOCIの優位性が分からない編(2025年11月21日開催)
oracle4engineer
PRO
1
150
AIで加速する次世代のBill Oneアーキテクチャ〜成長の先にある軌道修正〜
sansantech
PRO
1
150
Android Studio Otter の最新 Gemini 機能 / Latest Gemini features in Android Studio Otter
yanzm
0
500
研究開発部メンバーの働き⽅ / Sansan R&D Profile
sansan33
PRO
3
21k
私も懇親会は苦手でした ~苦手だからこそ懇親会を楽しむ方法~ / 20251127 Masaki Okuda
shift_evolve
PRO
4
380
Introduction to Bill One Development Engineer
sansan33
PRO
0
320
Codeer.LowCode.Blazor 紹介と成長録
wadawada
0
110
組織の“見えない壁”を越えよ!エンタープライズシフトに必須な3つのPMの「在り方」変革 #pmconf2025
masakazu178
1
1.1k
How native lazy objects will change Doctrine and Symfony forever
beberlei
1
230
Featured
See All Featured
Build your cross-platform service in a week with App Engine
jlugia
234
18k
Building Flexible Design Systems
yeseniaperezcruz
329
39k
Context Engineering - Making Every Token Count
addyosmani
9
440
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3.2k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
249
1.3M
Optimising Largest Contentful Paint
csswizardry
37
3.5k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
31
2.7k
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
36
6.1k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
132
19k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
231
22k
Product Roadmaps are Hard
iamctodd
PRO
55
12k
Statistics for Hackers
jakevdp
799
230k
Transcript
JSON Crash Course LAURENCE VANDEYAR, SENIOR SYSTEMS ENGINEER MARCH 3RD,
2015
What is JSON? JSON stands for JavaScript Object Notation
JSON is language independent * JSON is a lightweight data-interchange format
JSON Syntax JavaScript object notation syntax: Data is in
name/value pairs "firstName":“Laurence" Data is separated by commas “firstName":“Laurence", "lastName":“Vandeyar" Curly braces hold objects {"firstName":“Laurence", "lastName":“Vandeyar"}
JSON Syntax (cont.) Square brackets hold arrays [
{"firstName":“Laurence", "lastName":“Vandeyar"}, {"firstName":“Michael", "lastName":“Pereira"}, {"firstName":“Kenneth", "lastName":“Tamsberg"} ] Complete JSON Object Array {"employees":[ {"firstName":“Laurence", "lastName":“Vandeyar"}, {"firstName":“Michael", "lastName":“Pereira"}, {"firstName":“Kenneth", "lastName":“Tamsberg"} ]}
JSON Values JSON values can be: A number (integer
or floating point) A string (in double quotes) A Boolean (true or false) An array (in square brackets) An object (in curly braces) null
Example
Links http://json.org/ http://jsonformatter.curiousconcept.com/