Im doing this:
setInterval(function(){
// some stuff that takes not even 1ms
console.log(Date.now())
}, 50);
turns out it runs every ~70 ms or so. This is in node and nothing heavy is running on my machine at all. I am aware of setInterval / setTimeout not always running perfectly, but running at ~70 ms when i put 50 is something ive never seen.