random color hex js code example
Example 1: js random hex color
'#'+Math.floor(Math.random()*16777215).toString(16);
Example 2: javascript random color
'#'+(0x1000000+(Math.random())*0xffffff).toString(16).substr(1,6)
Example 3: random color code javascript
var randomColor = '#'+Math.floor(Math.random()*16777215).toString(16);
//generates a random color -> #56eec7
Example 4: random color in javascript
var randomColor = Math.floor(Math.random()*16777215).toString(16);