APO_automat/z1-prototype/product.js

8 lines
171 B
JavaScript
Raw Permalink Normal View History

2019-10-08 17:44:05 +02:00
module.exports = class Product {
constructor(name, quantity, price) {
this.name = name;
this.quantity = quantity;
this.price = price;
}
};