Skip to content

Instantly share code, notes, and snippets.

@jumplee
Created March 1, 2017 07:06
Show Gist options
  • Save jumplee/c8227f700453d4c326e7d401bd2081a6 to your computer and use it in GitHub Desktop.
Save jumplee/c8227f700453d4c326e7d401bd2081a6 to your computer and use it in GitHub Desktop.
var getRandomColor = function () {
var str = '#'
for (var i = 0; i < 6; i++) {
str += '0123456789abcdef' [Math.floor(Math.random() * 16)]
}
return str
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment