Premium Only Content

The JavaScript SUPER keyword is super! 🦸♂️
00:00:00 intro
00:00:22 setup
00:02:39 super constructor
00:05:59 super methods
00:09:03 conclusion
// super = keyword is used in classes to call the constructor or
// access the properties and methods of a parent (superclass)
// this = this object
// super = the parent
class Animal{
constructor(name, age){
this.name = name;
this.age = age;
}
move(speed){
console.log(`The ${this.name} moves at a speed of ${speed}mph`);
}
}
class Rabbit extends Animal{
constructor(name, age, runSpeed){
super(name, age);
this.runSpeed = runSpeed;
}
run(){
console.log(`This ${this.name} can run`);
super.move(this.runSpeed);
}
}
class Fish extends Animal{
constructor(name, age, swimSpeed){
super(name, age);
this.swimSpeed = swimSpeed;
}
swim(){
console.log(`This ${this.name} can swim`);
super.move(this.swimSpeed);
}
}
class Hawk extends Animal{
constructor(name, age, flySpeed){
super(name, age);
this.flySpeed = flySpeed;
}
fly(){
console.log(`This ${this.name} can fly`);
super.move(this.flySpeed);
}
}
const rabbit = new Rabbit("rabbit", 1, 25);
const fish = new Fish("fish", 2, 12);
const hawk = new Hawk("hawk", 3, 50);
rabbit.run();
fish.swim();
hawk.fly();
-
4:35:07
Right Side Broadcasting Network
4 days agoLIVE: VP Vance Attends the U.S. Marine Corps 250th Anniversary Celebration - 10/18/25
56.8K41 -
LIVE
Mally_Mouse
22 hours ago🔥🍺Spicy HYDRATE Saturday!🍺🔥-- Let's Play: Prison Life 2
98 watching -
2:57:52
Pepkilla
3 hours agoBattlefield 6 SMG Camo Grind
7.36K1 -
14:22
Exploring With Nug
11 hours ago $4.29 earnedThe River Exposed a Secret That No One Was Supposed to See!
41.4K4 -
23:23
MYLUNCHBREAK CHANNEL PAGE
12 hours agoThe Sunken Basilica
86.1K10 -
8:05
Hollywood Exposed
3 hours agoCharlie Sheen STUNS Tucker Carlson With His Shocking Political Confession
8.77K24 -
LIVE
SavageJayGatsby
3 hours ago🔥 Spicy Saturday – Let's Play: Prison Life 2🔥
74 watching -
30:02
The White House
3 hours agoVP JD Vance Delivers Remarks at 250th Anniversary Celebration for the United States Marine Corps
16K18 -
3:50:26
GamerGril
6 hours agoShould I Get A Zoob Job 💞Dying Light The Beast💞
15.5K5 -
5:00:18
MattMorseTV
10 hours ago $251.23 earned🔴No Kings "protest" TOTAL CHAOS.🔴
307K504