Managing Nesting: JSON supports nested objects and arrays, allowing you to represent hierarchical data structures // Nested JSON object let nestedObject = { "name": "John Doe", "contacts": [ { "type": "email", "value": "
[email protected]" }, { "type": "phone", "value": "123-456-7890" } ], "address": { "city": "New York", " zipCode ": "10001" } }; console.log( nestedObject );