How to Add/Remove Leading/Trailing Zeroes in JavaScript

How to Add/Remove Leading/Trailing Zeroes in JavaScript

Ferenc Almasi β€’ 2022 November 07 β€’ Read time 3 min read
  • twitter
  • facebook
JavaScript

There are generally two ways to add leading/trailing zeroes in JavaScript: using padStart and padEnd on strings, or using the Internationalization API (Intl.NumberFormat function) with a configuration object. Let's take a look at the Internationalization API first, as it is a more flexible, modern approach.

Copied to clipboard! Playground
// --------------------- Adding leading zeroes ---------------------
// This will return '007'
const formatter = new Intl.NumberFormat('en-US', { 
    minimumIntegerDigits: 3
})

formatter.format(7)

// --------------------- Adding trailing zeroes ---------------------
const formatter = new Intl.NumberFormat('en-US', { 
    minimumFractionDigits: 2
})

// This will return '7.00'
formatter.format(7)

// --------------------- Adding leading and trailing zeroes ---------------------
const formatter = new Intl.NumberFormat('en-US', {
    minimumIntegerDigits: 3,
    minimumFractionDigits: 3
})

// This will return '007.000'
formatter.format(7)
Using the Internationalization API to add leading/trailing zeroes

When calling Intl.NumberFormat, we only define a formatter. To actually format numbers, we need to call the format method on the created formatter.

To add leading zeroes, we need to use the minimumIntegerDigits option, while for adding trailing zeroes we need to use minimumFractionDigits. When using trailing zeroes, a dot is automatically appended to the string.

Notice that minimumIntegerDigits has the value of 3, as '7' already takes up one character, so only two leading zeroes will be added.

We can, of course, also combine both if needed as shown in the example above. We can also pass numbers as strings. Higher numbers, such as formatter.format(1000) will also be formatted to '1,000.000'.


Adding Leading and Trailing Zeroes Using padStart and padEnd

We can also do the same thing (with less flexibility) using the padStart and padEnd functions. To achieve the same formats as the previous examples, we can use the following:

Copied to clipboard! Playground
const number = 7

// This will return '007'
String(7).padStart(3, 0)

// This will return '700'
String(7).padEnd(3, 0)

// This will return '7??'
String(7).padEnd(3, '?')
Adding leading and trailing zeroes using padStart and padEnd

padStart and padEnd required two parameters. The maximum length of the string for the first parameter, and the string to be used as a filler for the second parameter. For the filler character, we can use any string or number, in case we need leading/trailing zeroes.

As the number itself already takes up one character, only two leading/trailing zeroes will be added. Notice that for padEnd, we would need to manually add a dot if needed.

Copied to clipboard! Playground
// This will return '7.00'
String(7) + '.'.padEnd(3, 0)

// ❌ This will return '700.'
String(7) + '.'.padStart(3, 0)

// βœ”οΈ This will return '.007'
'.' + String(7).padStart(3, 0)

// This will return '7.00'
`${7}.`.padEnd(4, 0)
Using leading/trailing zeroes with dots

Also keep in mind that when using template literals, we need to use 4 characters instead of 3, as the dot also takes up one character. This means that only two trailing zeroes will be added to the string.


Removing Leading and Trailing Zeroes

To remove leading or trailing zeroes in JavaScript, we can use the built-in Number operator that will work both ways.

Copied to clipboard! Playground
// This will return 7
Number('007')

// This will also return 7
Number(7.00)
Removing leading and trailing zeroes

In case you are working with numbers and would like to keep some of the trailing zeroes, you can also use the toFixed method, with the number of trailing zeroes to keep. For example:

Copied to clipboard! Playground
// This will return '7.00'
Number(7).toFixed(2)

// This will return '7.000'
Number(7).toFixed(3)
Adding trailing zeroes with the toFixed method
  • twitter
  • facebook
JavaScript
Did you find this page helpful?
πŸ“š More Webtips
Frontend Course Dashboard
Master the Art of Frontend
  • check Access 100+ interactive lessons
  • check Unlimited access to hundreds of tutorials
  • check Prepare for technical interviews
Become a Pro

Courses

Recommended

This site uses cookies We use cookies to understand visitors and create a better experience for you. By clicking on "Accept", you accept its use. To find out more, please see our privacy policy.