Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Show 2 digits before decimal and show 3 digits after decimal point

The number is a single digit or whatever its, I want the value as before 2 digit and after 3 digits in decimal value.

Received values:
7, 
07, 
07.1, 
07.10, 
17.222,

Expected output:

07.000,
07.000,
07.100,
07.100,
17.222

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

function formatNumber(number) {
  return number.toFixed(3).padStart(6, '0');
}

Does this do the trick for you ?

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading