Skip to content
  • Unlock Pro
  • Log in with GitHub
Solution
Submitted over 2 years ago

TIP CALCULATOR APP USING HTML,CSS AND JAVASCRIPT

TURLAPATI MANOHAR•190
@Manohar773
A solution to the Tip calculator app challenge
View live sitePreview (opens in new tab)View codeCode (opens in new tab)

Solution retrospective


Hello Friends, I had achieved the challenge Tip Calculator web page using HTML,CSS and JavaScript.

The logic behind the Tip calculation is solved by a function

//Calculate Tip function calculateTip(billAmount, tipPercentage, numberOfPeople) { let tipAmount = (billAmount * (tipPercentage / 100)) / numberOfPeople; let tip = Math.floor(tipAmount * 100) / 100; tip = tip.toFixed(2);

let totalAmount = (tipAmount * numberOfPeople + billAmount) / numberOfPeople; totalAmount = totalAmount.toFixed(2);

billTipAmount.innerHTML = $${tip}; billTotalPerPerson.innerHTML = $${totalAmount}; }

With the help of functions,objects and EventListener we can solve this challenge. Thank you!

Code
Loading...

Please log in to post a comment

Log in with GitHub

Community feedback

No feedback yet. Be the first to give feedback on TURLAPATI MANOHAR's solution.

Join our Discord community

Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!

Join our Discord

Stay up to datewith new challenges, featured solutions, selected articles, and our latest news

Frontend Mentor

  • Unlock Pro
  • Contact us
  • FAQs
  • Become a partner
  • Use cases

Explore

  • Learning paths
  • Challenges
  • Solutions
  • Articles

Community

  • Discord
  • Guidelines

For companies

  • Hire developers
  • Train developers
© Frontend Mentor 2019 - 2025
  • Terms
  • Cookie Policy
  • Privacy Policy
  • License