Guest User

Untitled

a guest
Feb 16th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. const randomHexColorCode = () => {
  2. let n = (Math.random() * 0xfffff * 1000000).toString(16);
  3. return '#' + n.slice(0, 6);
  4. };
Add Comment
Please, Sign In to add comment