I am playing around with bookmark snippets and I am trying to make a loop that changes the background color rapidly. This is my code:
var one;
funtion two() {
document.body.style.backgroundColor = "#" + Math.floor(Math.random() * 1000);
setTimeout(two, 1);
}
void 0
I am not very good at coding, so I am trying to make it very simple.