Files
30-seconds-of-code/snippets/RGB-to-hexadecimal.md
Angelos Chalaris d9c4f9234f Formatted snippets
Consistency in headings.
2017-11-30 19:17:33 +02:00

332 B

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('').

var rgbToHex = (r, g, b) =>
  [r.toString(16).padStart(2,'0') , g.toString(16).padStart(2,'0') , b.toString(16).padStart(2,'0')].join('');