• + 0 comments

    In the parameterised function define the formula, below is the code:

    function solve(meal_cost, tip_percent, tax_percent) { // Write your code here // Calculate tip and tax let tip = meal_cost * (tip_percent / 100); let tax = meal_cost * (tax_percent / 100);

    // Total cost
    let totalCost = meal_cost + tip + tax;
        }
    
    // Round to nearest integer and print
    console.log(Math.round(totalCost));
    

    }