Files
30-seconds-of-code/snippets/RGB-to-hexadecimal.md
Angelos Chalaris 43f8529cb9 Added samples
2017-12-12 17:50:08 +02:00

11 lines
322 B
Markdown

### RGB to hexadecimal
Convert each value to a hexadecimal string, using `toString(16)`, then `padStart(2,'0')` to get a 2-digit hexadecimal value.
Combine values using `join('')`.
```js
const rgbToHex = (r, g, b) =>
[r,g,b].map( v => v.toString(16).padStart(2,'0')).join('');
// rgbToHex(0, 127, 255) -> '007fff'
```