Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

249
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?

about 4 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);

about 4 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 Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!