0
I’m trying to get the website title here, always change its title from time to time but I don’t know how to do it. ignore the Alert it’s just for me to see how it looks
var titulo = [algum, valor, em, algum, lugar]
for (i = 0; i < 2; i++) {
arraytitu[i] = setInterval(function () {
if (i < 3) {
alert(arraytitu);
i++;
} else {
clearInterval(tmp[i])
}
}, 1000);
}```
in case, I can’t make go each value in the array, always goes all at once
– Anomlioruo