JSON Example Explained
Let’s break down a more detailed example to show these components working
together:
● Keys: "name", "age", "isMarried", "children", "hobbies", "address"
● Values:
o "Emily" (string)
o 30 (number)
o false (boolean)
o null (represents no value for children)
o ["painting", "dancing", "hiking"] (array of strings)
o An object for "address", containing additional key-value pairs like
"street", "city", and "zipCode"