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();
- 	
				 2:57:52 2:57:52Laura Loomer12 hours agoEP154: Naturalized US Navy Medic From GAZA Exposed For Ties To Hamas45.9K29
- 	
				 35:45 35:45Stephen Gardner15 hours ago🔴BREAKING: Election Auditor EXPOSES Democrat Election Fraud Evidence!49.8K66
- 	
				 15:48 15:48Sponsored By Jesus Podcast19 hours agoHow to Stop Being JEALOUS | When Comparison Steals Your Joy20.5K12
- 	
				 3:56:59 3:56:59DLDAfterDark10 hours ago $15.86 earnedDon't Worry - Things Will Get SO Much Worse! Sometimes It Be Like That37.3K9
- 	
				 25:41 25:41Robbi On The Record15 hours ago $4.37 earnedThe Billion-Dollar Lie Behind OnlyFans “Empowerment” (Her Testimony Will Shock You) | part II25K17
- 	
				 12:22 12:22Cash Jordan7 hours ago"CHICAGO MOB" Fights Back... "ZERO MERCY" Marines DEFY Judge, SMASH ILLEGALS44.3K55
- 	
				 46:58 46:58Brad Owen Poker19 hours agoI Make QUAD ACES!!! BIGGEST Bounty Of My Life! Turning $0 Into $10,000+! Must See! Poker Vlog Ep 32327.2K7
- 	
				 2:52:28 2:52:28TimcastIRL10 hours agoSTATE OF EMERGENCY Declared Over Food Stamp CRISIS, Judge Says Trump MUST FUND SNAP | Timcast IRL268K155
- 	
				 3:22:45 3:22:45Tundra Tactical17 hours ago $21.59 earned🚨Gun News and Game Night🚨 ATF Form 1 Changes, BRN-180 Gen 3 Issues??, and Battlefield 6 Tonight!51.9K6
- 	
				 1:45:13 1:45:13Glenn Greenwald14 hours agoJD Vance Confronted at Turning Point about Israel and Massie; Stephen Miller’s Wife Screams “Racist” and Threatens Cenk Uygur with Deportation; Rio's Police Massacre: 120 Dead | SYSTEM UPDATE #540126K177