JSON nesting is when objects or arrays are placed inside other objects or arrays. This lets you represent more complex structured data.
user.address.city
or array index like skills[0]
to access nested values.
"user"
is an object containing other values"address"
is another object nested inside "user"
"skills"
is an array of strings nested in "user"