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! 🏭
1 year ago
26
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
GritsGG
19 hours ago36 Hour Marathon Stream! Most Wins in WORLD! 3704+!
2,047 watching -
15:10
Dr Disrespect
18 hours agoI FINALLY Beat Baby Steps
10.5K11 -
8:38
MattMorseTV
13 hours ago $6.32 earnedThis is CATASTROPHIC for the Dems.
16.4K12 -
19:54
Forrest Galante
2 days agoPrivate Tour Of America's Best Marine Animal Facility
73.5K9 -
2:59:11
Side Scrollers Podcast
19 hours agoDEI’s FINAL BOSS EXPOSED + Book Publisher REVERSES Cancel Attempt + More | Side Scrollers
54.2K19 -
23:00
The Pascal Show
10 hours ago $1.75 earnedCANDACE EXPOSES TEXTS! Candace Owens Shows Proof Charlie Kirk Was B*llied By Donors Before His Death
7.69K5 -
1:31:37
The HotSeat
14 hours agoBondi On The Hill + Equitable Grading? We Are Failing Our KIDS!
30.8K6 -
6:05
Spooky Grandpa's Scary Stories
1 month agoTHE HARVEST MAN (Halloween, Horror, Folklore, Supernatural, Paranormal)
9.01K7 -
LIVE
Lofi Girl
2 years agoSynthwave Radio 🌌 - beats to chill/game to
241 watching -
1:02:11
DeVory Darkins
13 hours ago $37.80 earnedDemocrats suffers ANNIHILATION during heated hearing with Bondi as Jack Smith bombshell drops
160K110