js math random color code example
Example 1: js random hex color
'#'+Math.floor(Math.random()*16777215).toString(16);
Example 2: random color code js
Math.floor(Math.random()*16777215).toString(16);
'#'+Math.floor(Math.random()*16777215).toString(16);
Math.floor(Math.random()*16777215).toString(16);