I'm Corentin Laborie, a professional dedicated to building high-performance, user-centric web applications designed to YOUR NEEDS.
Select from 0 different services to find the one your team needs, and get an estimate of the daily rate for working together on your project.
How do I calculate this daily rate ?
const numberOfServices = 0;
const dailyDiscount = 0;
const sumWithInitial = services.pricePerDays
let result = 0;
if (isFirstTimeClient) {
dailyDiscount = 75;
}
if (numberOfServices > 1) {
const discountPercentage = 5.5 * numberOfServices;
result = sumWithInitial - (sumWithInitial * (discountPercentage/100)) - dailyDiscount;
} else {
result = sumWithInitial - dailyDiscount;
}