2
0
forked from s444420/AL-2020
AL-2020/objects/Product.js
2020-04-05 17:07:25 +02:00

8 lines
180 B
JavaScript

class Product {
constructor(name, type, farcing, price) {
this.name = name;
this.type = type;
this.farcing = farcing;
this.price = price
}
}