Files
30-seconds-of-code/snippets/extendHex.md
Angelos Chalaris b74eb9d9bd Linting
2017-12-27 11:02:46 +02:00

13 lines
504 B
Markdown

### extendHex
Extends a 3-digit color code to a 6-digit color code.
Use `Array.map()`, `split()` and `Array.join()` to join the mapped array for converting a 3-digit RGB notated hexadecimal color-code to the 6-digit form.
`String.slice()` is used to remove `#` from string start since it's added once.
```js
const extendHex = shortHex =>
'#' + shortHex.slice(shortHex.startsWith('#') ? 1 : 0).split('').map(x => x + x).join('');
// extendHex('#03f') -> '#0033ff'
// extendHex('05a') -> '#0055aa'
```