tipCalculator = (() => {
const roundToHundreths = num => Math.round(100*num) / 100
const findPercentage = (percent, amount) => roundToHundreths(amount * percent)
return {
fifteen: amount => `$${findPercentage(0.15, amount)}`,
twenty: amount => `$${findPercentage(0.20, amount)}`,
twentyFive: amount => `$${findPercentage(0.25, amount)}`,
thirty: amount => `$${findPercentage(0.30, amount)}`
}
})()