<button>Кнопка</button>
<button>Кнопка</button>
<button>Кнопка</button>
<button>Кнопка</button>
<button>Кнопка</button>
.random {
background: red;
}
const btns = document.querySelectorAll('button')
const getRandom = (min, max) => {
return Math.floor(Math.random() * (max - min) + min);
}
if (btns.length > 3) {
btns[getRandom(0, btns.length)].classList.add('random')
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.