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();
-
25:39
DeVory Darkins
12 hours ago $20.02 earnedMass shooting erupts in Michigan as bombshell study shows left wing political violence skyrocketed
34.7K107 -
5:55:33
MattMorseTV
10 hours ago $123.95 earned🔴Portland ANTIFA vs. ICE.🔴
161K323 -
3:13:00
Badlands Media
1 day agoThe Narrative Ep. 40: Acceleratia.
70.9K25 -
6:57:01
SpartakusLIVE
9 hours ago#1 Solo Spartan Sunday || TOXIC Comms, TACTICAL Wins, ENDLESS Content
61K5 -
49:45
Sarah Westall
8 hours agoComedians take Center Stage as World goes Nuts w/ Jimmy Dore
43.6K20 -
3:26:14
IsaiahLCarter
16 hours ago $11.68 earnedAntifa Gets WRECKED. || APOSTATE RADIO 030 (Guests: Joel W. Berry, Josie the Redheaded Libertarian)
52.2K1 -
4:44:18
CassaiyanGaming
7 hours agoArena Breakout: Infinite Dawg
32.4K2 -
2:24:32
vivafrei
17 hours agoEp. 284: Ostrich Crisis Continues! Kirk Updates! Fed-Surrection Confirmed? Comey Indicted! AND MORE!
142K226 -
5:05:18
Cewpins
7 hours agoSunday Sesh!🔥Rumble Giveaway Tonight!🍃420💨!MJ !giveaway
35.7K18 -
3:03:11
Conductor_Jackson
9 hours agoLet’s Play BioShock Infinite Burial at Sea Episode 2!
34.4K1