Open
Description
Version
22.9
Platform
win10 22H2
code:
let i = 0;
setInterval(() =>
{
i++;
}, 10);
setInterval(() =>
{
console.log(i);
i = 0;
}, 1000);
Subsystem
No response
What steps will reproduce the bug?
node
How often does it reproduce? Is there a required condition?
.
What is the expected behavior? Why is that the expected behavior?
100/s
What do you see instead?
66/s
Additional information
No response