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
260
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
86
Let's give REST a rest: exploring the state of gRPC in Ruby
ferperales
0
160
Guía Práctica para Convertirse en Contribuidor de Open Source en 10 Años (o más)
ferperales
0
78
¿Es convertirte en manager tan malo como todo mundo dice?
ferperales
0
79
Guía práctica para convertirse en contribuidor de open source en 10 años o más
ferperales
0
67
Anonimización de bases de datos con PostgreSQL
ferperales
0
87
Guía Práctica para Convertirse en Contribuidor de Open Source en 10 Años (o más)
ferperales
0
84
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
94
Other Decks in Programming
See All in Programming
文字コードの話
qnighy
44
17k
モックわからないマン卒業記 ~振る舞いを起点に見直した、フロントエンドテストにおけるモックの使いどころ~
tasukuwatanabe
3
390
PostgreSQL を使った快適な go test 環境を求めて
otakakot
0
560
TipKitTips
ktcryomm
0
170
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
590
maplibre-gl-layers - 地図に移動体たくさん表示したい
kekyo
PRO
0
290
Claude Code の Skill で複雑な既存仕様をすっきり整理しよう
yuichirokato
1
400
コーディングルールの鮮度を保ちたい / keep-fresh-go-internal-conventions
handlename
0
210
Symfony + NelmioApiDocBundle を使った スキーマ駆動開発 / Schema Driven Development with NelmioApiDocBundle
okashoi
0
160
DevinとClaude Code、SREの現場で使い倒してみた件
karia
1
1.1k
RubyとGoでゼロから作る証券システム: 高信頼性が求められるシステムのコードの外側にある設計と運用のリアル
free_world21
0
300
20260228_JAWS_Beginner_Kansai
takuyay0ne
5
580
Featured
See All Featured
Testing 201, or: Great Expectations
jmmastey
46
8.1k
We Have a Design System, Now What?
morganepeng
55
8k
Mobile First: as difficult as doing things right
swwweet
225
10k
ラッコキーワード サービス紹介資料
rakko
1
2.7M
The Illustrated Guide to Node.js - THAT Conference 2024
reverentgeek
1
310
A Soul's Torment
seathinner
5
2.5k
Visual Storytelling: How to be a Superhuman Communicator
reverentgeek
2
470
Applied NLP in the Age of Generative AI
inesmontani
PRO
4
2.2k
[SF Ruby Conf 2025] Rails X
palkan
2
830
Google's AI Overviews - The New Search
badams
0
930
What’s in a name? Adding method to the madness
productmarketing
PRO
24
4k
Build your cross-platform service in a week with App Engine
jlugia
234
18k
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!