Files
30-seconds-of-code/snippets/padNumber.md
2022-06-08 12:30:49 +03:00

22 lines
457 B
Markdown

---
title: Pad number
tags: string,math
expertise: beginner
author: maciv
cover: blog_images/flower-portrait-2.jpg
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'
```