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
29
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
LFA TV
12 hours agoLIVE & BREAKING NEWS! | WEDNESDAY 12/17/25
2,141 watching -
1:33:59
Game On!
18 hours ago $1.53 earnedBIGGEST 2025 College Football Playoff 1st Round BETS NOW!
21.6K2 -
1:04:39
Crypto Power Hour
11 hours ago $4.69 earnedState of Early Stage Crypto Investor Rob Good
39.6K8 -
1:24:24
LIVE WITH CHRIS'WORLD
18 hours agoTHE WAKE UP CALL - 12/17/2025 - Episode 27
20.9K -
27:51
ThinkStory
19 hours agoIT: WELCOME TO DERRY Season 1 Ending Explained!
26.9K -
5:29
Gamazda
13 hours ago $1.82 earnedMetallica - Nothing Else Matters (Live Piano in a Church)
19.2K7 -
2:50:56
The Confessionals
21 hours agoHe Killed a Monster (Then They Told Him to Stay Silent)
22.9K9 -
41:42
Brad Owen Poker
16 hours ago $0.78 earnedMy BIGGEST WIN EVER!! $50,000+ In DREAM Session!! Must See! BEST I’ve Ever Run! Poker Vlog Ep 360
15.6K1 -
17:53
The Illusion of Consensus
20 hours ago $1.10 earnedWhat Women REALLY Want in Public (It’s Not What You Think) | Geoffrey Miller
17.6K7 -
1:32:16
Uncommon Sense In Current Times
18 hours ago $0.81 earnedPolygyny Debate: The Biblical Case For and Against Plural Marriage | Uncommon Sense
16.6K1