[Solved] How would I make a Timer which times things in 0.75 seconds Javascript?


The second parameter of the setInterval function is the interval time in milliseconds – the 1000. Just change it to 750.

var myTimer = setInterval(function() {
    console.log("This will appear every 750 milliseconds"); 
}, 750);

1

solved How would I make a Timer which times things in 0.75 seconds Javascript?