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);
-
5:03:10
Pepkilla
8 hours agoTime to Party Verdansk
19.1K4 -
4:55:48
iCheapshot
5 hours ago $5.90 earnedWhere We Landing Boys! | Warzone Verdansk is Back Yeerrr
50.9K3 -
1:11:15
Savanah Hernandez
7 hours agoIt’s Time To Start Asking Hard Questions: Where Are The Arrests?
59.2K115 -
2:57:33
TimcastIRL
6 hours agoTrump Tariffs Spark Global PANIC, Countries BEG Trump, CAVE To His Demands | Timcast IRL
211K189 -
1:37:16
Roseanne Barr
8 hours ago $29.99 earnedThe Man Who Saved America | The Roseanne Barr Podcast #93
89.7K49 -
10:49:37
Dr Disrespect
15 hours ago🔴LIVE - DR DISRESPECT - WARZONE - OG VERDANSK
231K29 -
16:38
T-SPLY
11 hours agoDemocrats Are At President Trump For "Liberation Day"
30.6K23 -
2:53:20
vivafrei
11 hours agoModerating Debate on Syria - Roy Gutman vs. Scott Horton - Regime Change Good or Bad?
173K13 -
1:04:37
Man in America
11 hours agoCHEMTRAIL WARFARE: Tom Renz Exposes the Military’s SECRET Chemical Attacks on Americans
37.8K25 -
2:09:33
Precision Rifle Network
1 day agoS4E11 Guns & Grub Live - Playing World Of Tanks!
24.1K3