Files
30-seconds-of-code/snippets/pad-number.md
Angelos Chalaris 61200d90c4 Kebab file names
2023-04-27 21:58:35 +03:00

20 lines
407 B
Markdown

---
title: Pad number
tags: string,math
cover: flower-portrait-2
firstSeen: 2020-10-03T23:31:08+03:00
lastUpdated: 2020-10-03T23:31:08+03:00
---
Pads a given number to the specified length.
- Use `String.prototype.padStart()` to pad the number to specified length, after converting it to a string.
```js
const padNumber = (n, l) => `${n}`.padStart(l, '0');
```
```js
padNumber(1234, 6); // '001234'
```