JS Couleur hexagonale aléatoire
'#'+Math.floor(Math.random()*16777215).toString(16);
Jolly Jackal
'#'+Math.floor(Math.random()*16777215).toString(16);
function random(number){
return Math.floor(Math.random()*number);;
}
function randomColor(){
return 'rgb('+random(255)+','+random(255)+','+random(255)+')';
}
const setBg = () => {
const randomColor = Math.floor(Math.random()*16777215).toString(16);
document.body.style.backgroundColor = "#" + randomColor;
color.innerHTML = "#" + randomColor;
}
genNew.addEventListener("click", setBg);
setBg();
Math.floor(Math.random()*16777215).toString(16);