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);
-
19:23
DeVory Darkins
6 hours ago $8.86 earnedShocking Update Released Regarding Shooter's Roommate as Democrats Issue Insane Response
19.6K111 -
19:53
Stephen Gardner
8 hours ago🔥EXPOSED: Charlie Kirk Shooter's Trans Partner Tells FBI EVERYTHING!
36.2K219 -
DVR
BlackDiamondGunsandGear
4 hours agoAfter Hours Armory / RIP Charlie Kirk / What we know
13K2 -
29:09
Afshin Rattansi's Going Underground
1 day agoThe Political Life of Malcolm X: Busting the Myths (Prof. Kehinde Andrews)
27.4K13 -
DVR
DLDAfterDark
4 hours ago $1.35 earnedThe Assassination of Charlie Kirk - Just What We KNOW
13.7K6 -
1:33:56
MattMorseTV
5 hours ago $31.76 earned🔴Exposing his PARTNER IN CRIME.🔴
67.2K251 -
1:26:51
vivafrei
9 hours agoCharlie Kirk Assassination - When Peaceful Discussion Becomes Impossible - With Jose Vege
91.2K221 -
2:04:12
Mally_Mouse
1 day ago🌶️ 🥵Spicy BITE Saturday!! 🥵🌶️- Let's Play: Supermarket Together
44.2K3 -
1:15:37
BooniesHQ
9 hours ago $6.95 earnedGame Of SKATE Donny Hixson Vs. Chris Massie: Boonies Skate Night 2
64K7 -
2:56:25
Barry Cunningham
10 hours agoTHE TAKING OF CHARLIE KIRK HAS IGNITED A FLAME! AND A BREAKING (BUT NOT SHOCKING) UPDATE!
114K118