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
Benny Johnson
1 hour agoIt's All True, The 2024 Election Was Ready To Be Rigged. The REAL Story of How Trump-Elon STOPPED It
4,607 watching -
1:31:20
Graham Allen
2 hours agoPentagon DROPS HAMMER on Sen. Kelly for Urging Troops to DEFY Orders!! Sedition Exposed!
97.9K465 -
LIVE
Badlands Media
10 hours agoBadlands Daily: November 25, 2025
3,473 watching -
LIVE
Wendy Bell Radio
5 hours agoYou Realize We Voted For This.
7,233 watching -
26:00
Neil McCoy-Ward
3 hours agoAnd So It Begins… ('Carbon' Food Quotas Are HERE)
3.21K2 -
1:09:24
Chad Prather
16 hours agoWe Must Obey God: The Gospel That Cannot Be Silenced
66.1K20 -
LIVE
The Mike Schwartz Show
1 hour agoTHE MIKE SCHWARTZ SHOW with DR. MICHAEL J SCHWARTZ 11-25-2025
3,333 watching -
LIVE
LFA TV
12 hours agoLIVE & BREAKING NEWS! | TUESDAY 11/25/25
3,000 watching -
4:50
Captain Peach
6 days ago $7.18 earned5 Ways Game Trailers Lie
52.6K2 -
18:06
We Got Receipts
19 hours agoLatest EBT Meltdowns That Are Actually Funny!
27.4K26