js generate random hex color code example
Example 1: js random hex color
'#'+Math.floor(Math.random()*16777215).toString(16);
Example 2: random color in javascript
var randomColor = Math.floor(Math.random()*16777215).toString(16);
Example 3: random color code js
Math.floor(Math.random()*16777215).toString(16);