class menuCard{
constructor(price, parentSelector){
this.price = price;
this.parent = document.querySelector(parentSelector);
this.transfer = 42;
this.changeToUAH();
}
changeToUAH() {
Math.round(this.price = +this.price * this.transfer)
}
}
new menuCard(5, '.menu .container');