random color generator using js code example
Example 1: js random hex color
'#'+Math.floor(Math.random()*16777215).toString(16);
Example 2: random color code javascript
var randomColor = '#'+Math.floor(Math.random()*16777215).toString(16);
//generates a random color -> #56eec7