Merge pull request #1249 from 30-seconds/pad-number

Add padNumber
This commit is contained in:
Angelos Chalaris
2020-10-03 23:32:10 +03:00
committed by GitHub

16
snippets/padNumber.md Normal file
View File

@ -0,0 +1,16 @@
---
title: padNumber
tags: string,math,beginner
---
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'
```