“случайный цвет от EventListener Щелкнуть” Ответ

случайный цвет от EventListener Щелкнуть

const btn = document.querySelector('button');

function random(number) {
  return Math.floor(Math.random() * (number+1));
}

function changeBackground() {
  const rndCol = `rgb(${random(255)}, ${random(255)}, ${random(255)})`;
  document.body.style.backgroundColor = rndCol;
}

btn.addEventListener('click', changeBackground);
Grumpy Gerbil

случайный цвет от EventListener Щелкнуть

const btn = document.querySelector('button');

function random(number) {
  return Math.floor(Math.random() * (number+1));
}

function changeBackground() {
  const rndCol = `rgb(${random(255)}, ${random(255)}, ${random(255)})`;
  document.body.style.backgroundColor = rndCol;
}

btn.addEventListener('click', changeBackground);
Grumpy Gerbil

Ответы похожие на “случайный цвет от EventListener Щелкнуть”

Вопросы похожие на “случайный цвет от EventListener Щелкнуть”

Больше похожих ответов на “случайный цвет от EventListener Щелкнуть” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования