Learn JavaScript CLASSES in 6 minutes! 🏭

Publié le: 17 novembre 2023
sur la chaîne: Bro Code
145,030
3.2k

// 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)}`);


Sur cette page du site, vous pouvez voir la vidéo en ligne Learn JavaScript CLASSES in 6 minutes! 🏭 durée heure minute seconde en bonne qualité , qui a été Téléchargé par l'utilisateur Bro Code 17 novembre 2023, Partagez le lien avec vos amis et connaissances, sur youtube cette vidéo a déjà été regardée 145,030 fois et il a aimé 3.2 mille téléspectateurs. Bon visionnage!