TS
export const getDiscountedPrice = (baseAmount: number, discount: number) => {const discountPercentage = discount / 100;const discountAmount = baseAmount * discountPercentageconst priceAfterDiscount = baseAmount - discountAmount;return priceAfterDiscount;}
getDiscountedPrice
Discount money (or any number) based on a given percentage