8 lines
224 B
JavaScript
8 lines
224 B
JavaScript
|
const btn = document.getElementById("btn");
|
||
|
|
||
|
btn.addEventListener("click", () => {
|
||
|
document.body.style.background = randomBg();
|
||
|
});
|
||
|
function randomBg() {
|
||
|
return `hsl(${Math.floor(Math.random() * 360)}, 100%, 50%)`;
|
||
|
}
|