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);
-
4:14
The Rubin Report
1 day agoDave Rubin Shares Behind-the-Scenes Story of What Charlie Kirk Did for Him
77.1K59 -
1:58:58
Badlands Media
1 day agoDevolution Power Hour Ep. 389: Psyops, Patsies, and the Information War
117K178 -
2:13:55
Tundra Tactical
11 hours ago $16.45 earnedTundra Talks New Guns and Remembers Charlie Kirk On The Worlds Okayest Gun Show Tundra Nation Live
62.8K13 -
1:45:08
DDayCobra
13 hours ago $43.11 earnedDemocrats Caught LYING Again About Charlie Kirk's KILLER
97.2K101 -
19:23
DeVory Darkins
15 hours ago $21.59 earnedShocking Update Released Regarding Shooter's Roommate as Democrats Issue Insane Response
83.7K188 -
19:53
Stephen Gardner
17 hours ago🔥EXPOSED: Charlie Kirk Shooter's Trans Partner Tells FBI EVERYTHING!
85.7K370 -
2:47:25
BlackDiamondGunsandGear
12 hours agoAfter Hours Armory / RIP Charlie Kirk / What we know
64.4K8 -
29:09
Afshin Rattansi's Going Underground
2 days agoThe Political Life of Malcolm X: Busting the Myths (Prof. Kehinde Andrews)
64.1K17 -
2:47:25
DLDAfterDark
12 hours ago $8.22 earnedThe Assassination of Charlie Kirk - Just What We KNOW
42.1K9 -
1:33:56
MattMorseTV
13 hours ago $44.92 earned🔴Exposing his PARTNER IN CRIME.🔴
94.7K301