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

225
Views
How do i change a number into fixed notation, like K, M, or B, in Javascript?

I'm trying to change a number into a fixed notation, for example when the number is over 1000, change the number into x.x K, and so far everything i have tried has failed. You can see my code if you go to this link: https://jsfiddle.net/Blackcatgame77/vnzewfr1/7/ . I have a function ready to change my number into notation, here is the function

function formatter(cash) {
     if (cash >= 1000000000) {
        return (cash / 1000000000).toFixed(1).replace(/\.0$/, '') + 'B';
     }
     if (cash >= 1000000) {
        return (cash / 1000000).toFixed(1).replace(/\.0$/, '') + 'M';
     }
     if (cash >= 1000) {
        return (cash / 1000).toFixed(1).replace(/\.0$/, '') + 'K';
     }
}

I'm not sure how to use this function to make the numbers change into notation when they reach 1000, 1000000, or 1000000000. Can someone tell me how i could do this?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

I managed to figure it out, and here's how i did it. I defined a second variable from the currency called cashE, and then changed the variable being displayed from cash to cashE. To notate cash, i used this code:

  let cashE = cash;
  if (cash >= 1e+3) {
    cashE = (cash / 1e+3).toFixed(1).replace(/\.0$/, '') + 'K';
  }
  if (cash >= 1e+6) {
    cashE = (cash / 1e+6).toFixed(1).replace(/\.0$/, '') + 'M';
  }
  if (cash >= 1e+9) {
    cashE = (cash / 1e+9).toFixed(1).replace(/\.0$/, '') + 'B';
  }

I hope this helps anyone who was wondering how to do this :)

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!