JQuery losowy tablica kolorów
// jQuery Random Color on button click
let myColors = ['red', 'green', 'blue', 'pink'];
$('button').click(function(){
let randomColor = myColors[Math.trunc(Math.random() * myColors.length)];
$('h1').css('color', randomColor);
});
Manga301