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);
-
LIVE
GritsGG
19 hours ago36 Hour Marathon Stream! Most Wins in WORLD! 3704+!
2,047 watching -
15:10
Dr Disrespect
18 hours agoI FINALLY Beat Baby Steps
10.5K11 -
8:38
MattMorseTV
13 hours ago $6.32 earnedThis is CATASTROPHIC for the Dems.
16.4K12 -
19:54
Forrest Galante
2 days agoPrivate Tour Of America's Best Marine Animal Facility
73.5K9 -
2:59:11
Side Scrollers Podcast
19 hours agoDEI’s FINAL BOSS EXPOSED + Book Publisher REVERSES Cancel Attempt + More | Side Scrollers
54.2K19 -
23:00
The Pascal Show
10 hours ago $1.75 earnedCANDACE EXPOSES TEXTS! Candace Owens Shows Proof Charlie Kirk Was B*llied By Donors Before His Death
7.69K5 -
1:31:37
The HotSeat
14 hours agoBondi On The Hill + Equitable Grading? We Are Failing Our KIDS!
30.8K6 -
6:05
Spooky Grandpa's Scary Stories
1 month agoTHE HARVEST MAN (Halloween, Horror, Folklore, Supernatural, Paranormal)
9.01K7 -
LIVE
Lofi Girl
2 years agoSynthwave Radio 🌌 - beats to chill/game to
241 watching -
1:02:11
DeVory Darkins
13 hours ago $37.80 earnedDemocrats suffers ANNIHILATION during heated hearing with Bondi as Jack Smith bombshell drops
160K110