export const Category = {
Electronics: 'electronics',
Clothing: 'clothing',
};
export class Product {
constructor(id, name, price, category) {
this.id = id;
this.name = name;
this.price = price;
this.category = category;
}
get ['displayName']() {
return `${this.name} (${this.category})`;
}
calculateTax(rate = 0.1) {
return this.price * rate;
}
}