Nested Object Example

Create an object that contains another object.

Preview

Code

<script>
let user = {
  name: "David",
  address: {
    city: "Berlin",
    country: "Germany"
  }
};

console.log(user.address.city);
</script>

More JS Objects Examples (7)