Premium Only Content
This video is only available to Rumble Premium subscribers. Subscribe to
enjoy exclusive content and ad-free viewing.
Learn JavaScript CLASSES in 6 minutes! 🏭
2 years ago
28
Automotive
Education
Programming
Coding
Software Development
Web Development
Mobile App Development
Computer Science
Coding Tutorial
Code Learning
Programming Language
// class = (ES6 feature) provides a more structured and cleaner way to
// work with objects compared to traditional constructor functions
// ex. static keyword, encapsulation, inheritance
class Product{
constructor(name, price){
this.name = name;
this.price = price;
}
displayProduct(){
console.log(`Product: ${this.name}`);
console.log(`Price: $${this.price.toFixed(2)}`);
}
calculateTotal(salesTax){
return this.price + (this.price * salesTax);
}
}
const salesTax = 0.05;
const product1 = new Product("Shirt", 19.99);
const product2 = new Product("Pants", 22.50);
const product3 = new Product("Underwear", 100.00);
product1.displayProduct();
const total = product1.calculateTotal(salesTax);
console.log(`Total price (with tax): $${total.toFixed(2)}`);
Loading comments...
-
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 -
42:00
Based Campwith Simone and Malcolm
4 days agoNYT Brands Divorce as the Cool New Trend for Gen Z Girls
31.5K7 -
11:43
VSOGunChannel
21 hours ago $3.96 earnedThe Gun Control the Trump Admin is Fighting For
23.7K17 -
1:03:30
A Cigar Hustlers Podcast Every Day
1 day agoEpisode 416 Epstein Files w/Matt Booth
31.3K