Premium Only Content
![The JavaScript SUPER keyword is super! 🦸♂️](https://1a-1791.com/video/s8/1/w/p/J/l/wpJlo.qR4e-small-The-JavaScript-SUPER-keywor.jpg)
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();
-
1:09:47
Tucker Carlson
3 hours agoKen Paxton: How Soros Protects Drug Cartels, Being Blacklisted by Fox News, and the Laken Riley Act
133K84 -
LIVE
Film Threat
7 hours agoCAPTAIN AMERICA: BRAVE NEW WORLD REVIEW (NON-SPOILER) | Hollywood on the Rocks
146 watching -
LIVE
The Nunn Report - w/ Dan Nunn
1 hour ago[Ep 607] Constitutional Crisis! There Is No Proof! AAARRRGG! – Leftist Lunacy & Why It Will Fail
319 watching -
3:19:53
Right Side Broadcasting Network
6 hours agoLIVE REPLAY: White House Press Secretary Karoline Leavitt Holds a Press Briefing - 2/12/25
176K66 -
11:08
China Uncensored
2 hours agoChina Will Betray You
41.4K9 -
17:38
Silver Dragons
3 hours agoTRUMP ENDS THE PENNY - Coin Dealer on the END OF CASH! Is This Just the Start?!?
23.1K5 -
59:58
The Tom Renz Show
6 hours agoGeoengineering & Immigration Riots - Prepping to Keep Your Family Safe
16.6K2 -
20:02
Neil McCoy-Ward
3 hours ago🚨 Full PANIC Mode Activated! (As The PEOPLE Learn The TRUTH!)
34.1K9 -
33:49
CryptoWendyO
3 hours ago $3.68 earnedVICIOUS SOLANA COULD DESTROY ETHEREUM WITH THE NEWS
46.1K2 -
1:18:07
Russell Brand
5 hours agoFederal Secrets Unveiled: Trump’s Taskforce Targets JFK, Epstein, and 9/11 Files – SF536
146K128