Skip to content

Instantly share code, notes, and snippets.

@sayyedhammadali
Created October 2, 2021 21:56
Show Gist options
  • Save sayyedhammadali/66aefe8e57d764031536640c2b65a446 to your computer and use it in GitHub Desktop.
Save sayyedhammadali/66aefe8e57d764031536640c2b65a446 to your computer and use it in GitHub Desktop.
Generate Random Hex
const randomHex = () => `#${Math.floor(Math.random() * 0xffffff).toString(16).padEnd(6, "0")}`;
console.log(randomHex());
// Result: #92b008
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment