Nested Object Example
Preview
Code
<script>
let user = {
name: "David",
address: {
city: "Berlin",
country: "Germany"
}
};
console.log(user.address.city);
</script>
<script>
let user = {
name: "David",
address: {
city: "Berlin",
country: "Germany"
}
};
console.log(user.address.city);
</script>