get random hex color javascript 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 js
Math.floor(Math.random()*16777215).toString(16);