Generate A Random Hex Color In JavaScript
This code generates a random hex color value (including the #
sign)
const
Output:
#580e8b
This is based off of the code on https://css-tricks.com/snippets/javascript/random-hex-color/][this page but adds `padStart` so that colors that would otherwise be less than six characters are padded properly.
There are other approaches on the page as well if you're interested.
-- end of line --