Understand JSON format in 7 minutes

Опубликовано: 21 Май 2026
на канале: Ivan and Code (Ivan Karaman)
126
14

Learn about the structure of a JSON and the ways to navigate it using Javascript.
JSON stands for "JavaScript Object notation". As the name suggests, it takes origin in JavaScript, but now it is a language-agnostic standard defining a data structure. It allows you to work with APIs, structure data, create config files, and more. It is very easy to read and understand, making it easy to learn and so popular.

This tutorial is using JS to visualise examples and starts with the primitive data types: string, number, boolean, null, object, and array. Then we dig deeper into the objects and arrays, their structure, and the ways to traverse them in code using dot or square bracket notations.

Check out the full "Learn X in Y minutes" playlist:
   • Learn X in Y minutes  

-----------------------------------------------------------------------------------------------
---------- Timeline -------------------------------------------------------------------
-----------------------------------------------------------------------------------------------
0:00 - intro
0:34 - basic building blocks
1:20 - object
1:57 - JSON vs JS object difference
2:23 - duplicate keys are valid!?
3:10 - array
3:47 - accessing JSON object values
5:19 - combining traverse techniques
6:37 - success and summary