Answers for "convert random string to hex js"

0

javascript generate random Hex

const randomHex = () => `#${Math.floor(Math.random() * 0xffffff).toString(16).padEnd(6, "0")}`;

console.log(randomHex());
// Result: #92b008
Posted by: Guest on September-28-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language