JSON Tutorial - Learn in 15 Minutes

preview_player
Показать описание
In this tutorial we're going to cover what JSON is, what it's used for, the data types JSON supports, and most importantly: how it is actually used. You'll learn all of these topics within the next 15 minutes.

JSON is an essential topic to know in the world of web development, as it allows developers to send data across the web. JSON helps power APIs and backend servers that supply us with the information we see online!

I'm aiming to hit the 1,000 subscribers mark soon, so if you liked the video please feel free to sub to the channel so I can hit this milestone! :)

Timestamps:
0:00 - JSON & Types
2:13 - JSON Object
6:09 - JSON Array
8:37 - Implementing w/ JS

Hashtags:
#austindavis #webdevelopment #webdeveloper
Рекомендации по теме
Комментарии
Автор

When working with JSON in JavaScript, does it do any sort of automatic casting for Boolean and number values? For example, if my JSON object looks like this: { "name" : "foo", "isUser": true, "isActive":"true" } and I assign it to a variable, would the "isUser" and "isActive" fields both evaluate to the Boolean value of true, or would "isActive" remain a string due to the quotes?

pm
Автор

what is the difference between json and normal object why object .notation are applicable to json

sudhanshudubey