• Jobs
  • About Us
  • professionals
    • Home
    • Jobs
    • Courses and challenges
  • business
    • Home
    • Post vacancy
    • Our process
    • Pricing
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Salary Calculator

0

202
Views
Calculate unknown total with amount of the percentage

I have two values

startWidth = 500px
percentageWidth = 70%

I'd like to calculate the value of startWidth at when percentageWidth changes, for example if I wanted maxWidth, I'd be working with:

startWidth = ???px
percentageWidth = 100%

To calculate this mathematically is easy, I would just do:

  1. Create an equation that shows the fractional relationship between the percentage and its value. Use the variable x to represent the unknown total.
70/100 = 500/x
  1. Cross-multiply the equation to bring the variable to one side of the equation as a whole number. Multiply values diagonal from each other in the equation, i.e.
70x = 50000
  1. Divide both sides by the coefficient 70
70x/70 = 50000/70
x = 714

How would I write this out as a JavaScript algorithm?

almost 3 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You can easily achieve the result as

const startWidth = 500;
const percentageWidth = 70;

const result = Math.round((startWidth * 100) / percentageWidth);
console.log(result);

almost 3 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Our process Sales
Legal
Terms and conditions Privacy policy
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recommend me some offers
I have an error