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
28
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
Donald Trump Jr.
5 hours agoFull Coverage of Iowa Rally, Live! | TRIGGERED Ep.255
5,978 watching -
LIVE
Barry Cunningham
4 hours agoBREAKING: PRESIDENT TRUMP SPEAKS AT AMERICA'S 250TH ANNIVERSARY KICK-OFF RALLY!
3,592 watching -
LIVE
AimControllers
2 days ago🔴LIVE - THE PRE GAME LOBBY PODCAST
319 watching -
LIVE
megimu32
59 minutes agoOTS: Born to Grill, Raised on Fireworks - 4th of July Throwbacks
150 watching -
1:27:38
Glenn Greenwald
3 hours agoGlenn Takes Your Questions on the Ukraine War, Peter Thiel and Transhumanism, Trump’s Middle East Policies, the New Budget Bill, and More | SYSTEM UPDATE #481
21.8K6 -
LIVE
SpartakusLIVE
3 hours agoSHAVING my BEARD on stream TONIGHT || Chiseled JAWLINE, peak MASCULINITY, and SUAVE FRESH FACE
177 watching -
10:10
Nicholas Bowling
1 hour agoWe Preached the Gospel to College Students… Then THEY Preached Too | UT Recap
21 -
1:52:01
TheRyanMcMillanShow
4 hours agoTrigger Happy 2: Heavy and Deep - RMS 035
221 -
DVR
Edge of Wonder
5 hours agoPresidential Hauntings, Bizarre Food & Independence Day Mandela Effect: EOW July 4th Party!
8.46K1 -
1:55:32
Nick Freitas
2 hours agoDo We Need a New Declaration of Independence?
3055