Posts

Showing posts from November, 2023

Code Challenge by Peter Rocker!

My Code Challenge Welcome to my code Challenge Output Programmer memes Tell me something funny! Give me some wisdom... I want a riddle! Actions Show a Meme Tell Me a Joke Random Quote Riddle me Reveal Riddle Answer Code challenge by @Peter Rocker

Creation of Something Crazy

 const htmlBody = document.querySelector('body'); const randonClickFunction = function() {     const colors = ["#002942", "#ff34ef", "red", "blue", "green", "purple", "gray"];     const randomIndex = Math.floor(Math.random() * colors.length);     const randomcolor = colors[randomIndex];     htmlBody.style.background = randomcolor;     console.log('The user clicked and set the color to' + randomcolor); } htmlBody.onclick = randonClickFunction;