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
8
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...
-
58:45
The StoneZONE with Roger Stone
4 hours agoTrump Pardons Ross Ulbricht | The StoneZONE w/ Roger Stone
60K11 -
1:57:31
2 MIKES LIVE
13 hours ago2 MIKES LIVE #170 with special guest Rep. Buddy Carter (R-GA)
47.7K1 -
1:02:58
Flyover Conservatives
23 hours agoA Doctors Response to Trump’s First Moves: W.H.O. and FDA - Dr. Troy Spurrill; A REAL-LIFE Approach to Health and Wellness Transformation - Kellie Kuecha Moitt | FOC Show
48.1K4 -
41:50
State of the Second Podcast
8 hours agoWhat do Gold and Guns have in common?
20K4 -
1:01:26
PMG
5 hours ago $1.18 earnedLibs In FULL PANIC Since Trump Took Office! Creating a Faith to Fit their Agenda
22.4K7 -
7:09:22
Dr Disrespect
13 hours ago🔴LIVE - DR DISRESPECT - TRIPLE THREAT CHALLENGE - EXTREME EDITION
253K33 -
55:00
LFA TV
13 hours agoThe End of the January 6 Hoax | TRUMPET DAILY 1.22.25 7pm
44.8K11 -
1:13:37
Battleground with Sean Parnell
10 hours agoPresident Trump Is On FIRE w/ Savage Rich Baris
184K25 -
1:59:59
Melonie Mac
7 hours agoGo Boom Live Ep 34!
76.7K17 -
49:27
Sarah Westall
5 hours agoTrillion Dollar 5G Lawsuit, Project Archimedes, Mind Control & DEW Weapons w/Attorney Todd Callender
74.4K36