Nest all content into snippets
This commit is contained in:
20
snippets/js/s/pad-number.md
Normal file
20
snippets/js/s/pad-number.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
title: Pad number
|
||||
type: snippet
|
||||
language: javascript
|
||||
tags: [string,math]
|
||||
cover: flower-portrait-2
|
||||
dateModified: 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'
|
||||
```
|
||||
Reference in New Issue
Block a user