Answers for "get random color function javascript"

27

js random hex color

'#'+Math.floor(Math.random()*16777215).toString(16);
Posted by: Guest on February-25-2020
0

js generate random color

function get_random_color() 
{
    var color = "";
    for(var i = 0; i < 3; i++) {
        var sub = Math.floor(Math.random() * 256).toString(16);
        color += (sub.length == 1 ? "0" + sub : sub);
    }
    return "#" + color;
}

function get_rand_color()
{
    var color = Math.floor(Math.random() * Math.pow(256, 3)).toString(16);
    while(color.length < 6) {
        color = "0" + color;
    }
    return "#" + color;
}
Posted by: Guest on December-22-2020

Code answers related to "get random color function javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language