colorPrices = {
"natural": 0,
"venge": 0,
"dark-walnut": 0,
"white": 600,
}
shelvesPrices = {
"no-shelves": 0,
"2-shelves": 1700,
"4-shelves": 3400,
}
mountPrices = {
"bolts": 0,
"hidden-mounts": 250,
}
deliveryPrices = {
"no-delivery": 0,
"odessa-delivery": 300,
"odessa-delivery-and-assembly": 500,
"nova-poshta": 0,
}
function formula(width, length, color, shelves, mount, delivery) {
let alderPrice = color + shelves + mount + delivery + (width + length) * 25;
let fraxinusPrice = (color + shelves + mount + delivery + (width + length) * 25) + ((color + shelves + mount + (width + length) * 25) * 0.3);
return {
alderPrice,
fraxinusPrice
}
}