Premium Only Content
This video is only available to Rumble Premium subscribers. Subscribe to
enjoy exclusive content and ad-free viewing.
Learn JavaScript INHERITANCE in 7 minutes! 🐇
2 years ago
32
Automotive
Education
Programming
Coding
Software Development
Web Development
Mobile App Development
Computer Science
Coding Tutorial
Code Learning
Programming Language
// inheritance = allows a new class to inherit properties and methods
// from an existing class. Helps with code reusability
class Animal{
alive = true;
eat(){
console.log(`This ${this.name} is eating`);
}
sleep(){
console.log(`This ${this.name} is sleeping`);
}
}
class Rabbit extends Animal{
name = "rabbit";
run(){
console.log(`This ${this.name} is running`);
}
}
class Fish extends Animal{
name = "fish";
swim(){
console.log(`This ${this.name} is swimming`);
}
}
class Hawk extends Animal{
name = "hawk";
fly(){
console.log(`This ${this.name} is flying`);
}
}
const rabbit = new Rabbit();
const fish = new Fish();
const hawk = new Hawk();
console.log(rabbit.alive);
rabbit.eat();
rabbit.sleep();
rabbit.run();
Loading comments...
-
LIVE
vivafrei
30 minutes agoLive with Ivan Raiklin! Jan. 6 Pipe Bomber~! Comey & Letitia James Charges Dropped! AND MORE!
544 watching -
LIVE
The Quartering
1 hour agoCandace Owens Assassination Plot, Fat Acceptance Is Over, James Comey Indictment Thrown Out
6,764 watching -
LIVE
TheSaltyCracker
55 minutes agoSALTcast 11-24-25
3,142 watching -
7:51
Dr. Nick Zyrowski
6 days agoHow To Starve Fat Cells - Not Yourself!
36.4K6 -
1:11:53
DeVory Darkins
2 hours agoBREAKING: Hegseth drops NIGHTMARE NEWS For Mark Kelly with potential court martial
91.6K41 -
LIVE
Dr Disrespect
4 hours ago🔴LIVE - DR DISRESPECT - ARC RAIDERS - BLUEPRINTS OR DEATH
2,738 watching -
1:10:26
Sean Unpaved
3 hours agoJalen Hurts & Eagles COLLAPSE In LOSS vs. Cowboys | UNPAVED
16.5K2 -
2:00:25
Steven Crowder
5 hours agoNo Influencer Safe: New X Update Exposed A Major Psyop
422K254 -
17:38
Professor Nez
3 hours agoTHIS will HAUNT Jasmine Crockett for Years...
14.9K20 -
56:36
The Rubin Report
4 hours agoTense Moment at Trump-Mamdani Meeting That No One Predicted
46.7K62