function changeColor() {
const randomColor = Math.floor(Math.random() * 16777215).toString(16);
if (document.body.style.backgroundColor !== 'black') {
document.body.style.backgroundColor = randomColor;
}
document.body.style.backgroundColor = '#' + randomColor;
console.log(randomColor);
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter