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! 🐇
1 year 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
Kimberly Guilfoyle
3 hours agoCharlie's Legacy and Our Mission
273 watching -
1:07:55
vivafrei
2 hours agoJimmy Kimmel Out Indefinitely! Trump "Srubs" Study on Right Wing Violence? Clinton Tweet & MORE
153K37 -
1:35:02
The Quartering
2 hours agoNuclear Fallout From Jimmy Kimmel Firing, New Head Of TP USA, Obama Whines
179K50 -
23:35
Jasmin Laine
1 hour ago“We Were Betrayed”—Carney HUMILIATED As His Base REVOLTS Against Him
4.15K2 -
LIVE
The HotSeat
1 hour agoChapter 32 Begins: Honoring Charlie Kirk’s Legacy & Jimmy Kimmel Gets Canceled
794 watching -
LIVE
The Nunn Report - w/ Dan Nunn
1 hour ago[Ep 751] Jimmy Kimmel – You’re Fired! | Freedom of Speech is Not Freedom From Consequence
295 watching -
1:28:39
Sean Unpaved
4 hours agoBills-Dolphins TNF Battle, Steelers' D in Crisis, & Coaching Hot Seat Alert!
33.6K1 -
59:58
Human Events Daily with Jack Posobiec
3 hours agoHUMAN EVENTS DAILY WITH JACK POSOBIEC
30.8K29 -
1:12:48
LindellTV
2 hours agoTHE MIKE LINDELL SHOW: JIMMY KIMMEL SUSPENDED
24.8K5 -
1:57:27
The Charlie Kirk Show
4 hours agoMegyn Kelly Remembers Charlie + Jimmy Kimmel Off the Air | 9.18.2025
307K98