Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
JSON
Search
Fernando Perales
September 27, 2012
Programming
1
250
JSON
Introducción a JSON
Fernando Perales
September 27, 2012
Tweet
Share
More Decks by Fernando Perales
See All by Fernando Perales
Anonimización de bases de datos con PostgreSQL - nerdearla
ferperales
0
59
Let's give REST a rest: exploring the state of gRPC in Ruby
ferperales
0
140
Guía Práctica para Convertirse en Contribuidor de Open Source en 10 Años (o más)
ferperales
0
67
¿Es convertirte en manager tan malo como todo mundo dice?
ferperales
0
67
Guía práctica para convertirse en contribuidor de open source en 10 años o más
ferperales
0
53
Anonimización de bases de datos con PostgreSQL
ferperales
0
69
Guía Práctica para Convertirse en Contribuidor de Open Source en 10 Años (o más)
ferperales
0
64
Guía práctica para convertirse en Senior Engineer en 10 años
ferperales
0
140
Consultoría y Open Source: buscando el balance entre beneficio y la diversión
ferperales
0
77
Other Decks in Programming
See All in Programming
MLH State of the League: 2026 Season
theycallmeswift
0
210
実用的なGOCACHEPROG実装をするために / golang.tokyo #40
mazrean
1
130
CSC305 Summer Lecture 12
javiergs
PRO
0
130
Oracle Database Technology Night 92 Database Connection control FAN-AC
oracle4engineer
PRO
1
360
JSONataを使ってみよう Step Functionsが楽しくなる実践テクニック #devio2025
dafujii
0
230
AI OCR API on Lambdaを Datadogで可視化してみた
nealle
0
220
旅行プランAIエージェント開発の裏側
ippo012
1
590
Google I/O recap web編 大分Web祭り2025
kponda
0
2.9k
コンテキストエンジニアリング Cursor編
kinopeee
1
740
Microsoft Orleans, Daprのアクターモデルを使い効率的に開発、デプロイを行うためのSekibanの試行錯誤 / Sekiban: Exploring Efficient Development and Deployment with Microsoft Orleans and Dapr Actor Models
tomohisa
0
220
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
110
ProxyによるWindow間RPC機構の構築
syumai
1
260
Featured
See All Featured
Designing Experiences People Love
moore
142
24k
Build your cross-platform service in a week with App Engine
jlugia
231
18k
How STYLIGHT went responsive
nonsquared
100
5.8k
Statistics for Hackers
jakevdp
799
220k
Embracing the Ebb and Flow
colly
87
4.8k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
29
1.9k
How to train your dragon (web standard)
notwaldorf
96
6.2k
GitHub's CSS Performance
jonrohan
1032
460k
Java REST API Framework Comparison - PWX 2021
mraible
33
8.8k
StorybookのUI Testing Handbookを読んだ
zakiyama
30
6.1k
It's Worth the Effort
3n
187
28k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
53
2.9k
Transcript
JSON
¿Qué es JSON? JavaScript Object Notation es un formato ligero
de intercambio de datos basado en una de las mejores partes de Javascript: Notación literal de objetos
Douglas Crockford El formato JSON fue popularizado por el gurú
de Javascript Douglas Crockford también creador de heramientas como JSLint y JSMin
Douglas Crockford Además de ser senior Javascript architect en Paypal
y autor del libro Javascript: the good parts
¿En qué consiste? Es un arreglo de pares ordenados de
tipo clave – valor que puede tomar los 6 tipos de valores de JS y el valor especial null {“clave” : valor}
{ "first": "Jerome", "middle": "Lester", "last": "Howard", "nick-name": "Curly", "born":
1903, "died": 1952, "quote": "nyuk-nyuk-nyuk!" }
Tambien es posible crear un array de Objetos JSON usando
la notación de la parte superior [ {“clave” : valor}, {“otraClave”:otroValor} ]
[ {"first": "Jerome", "middle": "Lester", "last": "Howard", "nick-name": "Curly",}, {"first":
"Harry", "middle": "Moses", "last": "Howard", "nick-name": "Moe"}, {"first": "Louis","last": "Feinberg", "nick-name": "Larry",} ]
Uso de JSON: API El formato ligero de JSON propicia
el intercambio de información y es una buena opción para la implementación de APIs o interfaces para comunicación entre aplicaciones
¿Dudas, preguntas o comentarios?
¡Gracias!