“JS mendapatkan warna hex acak” Kode Jawaban

warna hex acak js

'#'+Math.floor(Math.random()*16777215).toString(16);
Jolly Jackal

menghasilkan javascript warna rgb acak

'#'+(0x1000000+(Math.random())*0xffffff).toString(16).substr(1,6)
Bewildered Bat

JS mendapatkan warna hex acak

"#" + ((1<<24)*Math.random() | 0).toString(16));

JS menghasilkan warna acak

var randomColor = Math.floor(Math.random()*16777215).toString(16);
Wandering Wolf

JavaScript menghasilkan hex acak

const randomHex = () => `#${Math.floor(Math.random() * 0xffffff).toString(16).padEnd(6, "0")}`;

console.log(randomHex());
// Result: #92b008
Rashid Siddique

JS menghasilkan warna acak

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;
}
Plain Pygmy

Jawaban yang mirip dengan “JS mendapatkan warna hex acak”

Pertanyaan yang mirip dengan “JS mendapatkan warna hex acak”

Lebih banyak jawaban terkait untuk “JS mendapatkan warna hex acak” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya