If I don’t know how many times something will run per second, how can I get the same output?
So I have a variable attemptedFPS. This is how many times my loops will be run per second. Example loop: setInterval(console.log, 1000/attemptedFPS, “Hello World”); So for example if the …