Good morning!
A client is on the site, it runs in the console a code like this:
setInterval(function(){
console.log('Teste');
}, 1);
Does his code, running on his browser, in any way damage the speed of the website in general? Server or something, or will it only harm itself?
This setInterval was just an example, it could be anything else, a for
that will leave an infinite loop for example.