We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
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));
}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Day 2: Operators
You are viewing a single comment's thread. Return to all 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);
}