Premium Only Content
Learn JavaScript NESTED OBJECTS easy! 📫
00:00:00 example 1
00:04:24 example 2
// nested objects = Objects inside of other Objects.
// Allows you to represent more complex data structures
// Child Object is enclosed by a Parent Object
// Person{Address{}, ContactInfo{}}
// ShoppingCart{Keyboard{}, Mouse{}, Monitor{}}
class Person{
constructor(name, age, ...address){
this.name = name;
this.age = age;
this.address = new Address(...address);
}
}
class Address{
constructor(street, city, country){
this.street = street;
this.city = city;
this.country = country;
}
}
const person1 = new Person("Spongebob", 30, "124 Conch St.",
"Bikini Bottom",
"Int. Waters");
const person2 = new Person("Patrick", 37, "128 Conch St.",
"Bikini Bottom",
"Int. Waters");
const person3 = new Person("Squidward", 45, "126 Conch St.",
"Bikini Bottom",
"Int. Waters");
console.log(person1.name);
console.log(person1.age);
console.log(person1.address);
console.log(person1.address.street);
console.log(person1.address.city);
console.log(person1.address.country);
-
7:51
Dr. Nick Zyrowski
6 days agoHow To Starve Fat Cells - Not Yourself!
36.4K6 -
1:11:53
DeVory Darkins
2 hours agoBREAKING: Hegseth drops NIGHTMARE NEWS For Mark Kelly with potential court martial
91.6K41 -
LIVE
Dr Disrespect
4 hours ago🔴LIVE - DR DISRESPECT - ARC RAIDERS - BLUEPRINTS OR DEATH
2,738 watching -
1:10:26
Sean Unpaved
3 hours agoJalen Hurts & Eagles COLLAPSE In LOSS vs. Cowboys | UNPAVED
16.5K2 -
2:00:25
Steven Crowder
5 hours agoNo Influencer Safe: New X Update Exposed A Major Psyop
422K254 -
17:38
Professor Nez
3 hours agoTHIS will HAUNT Jasmine Crockett for Years...
14.9K20 -
56:36
The Rubin Report
4 hours agoTense Moment at Trump-Mamdani Meeting That No One Predicted
46.7K62 -
9:34
The White House
4 hours agoFirst Lady Melania Trump Welcomes the Official 2025 White House Christmas Tree
35.2K16 -
LIVE
LFA TV
17 hours agoLIVE & BREAKING NEWS! | MONDAY 11/24/25
1,944 watching -
1:01:32
VINCE
6 hours agoNew Info Blows the Lid Off The Butler Assassination Attempt | Episode 175 - 11/24/25 VINCE
267K241