We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4bd125e + f356598 commit 14fec81Copy full SHA for 14fec81
doc/en/other/timeouts.md
@@ -55,7 +55,7 @@ intervals, result in function calls stacking up.
55
function foo(){
56
// something that blocks for 1 second
57
}
58
- setInterval(foo, 100);
+ setInterval(foo, 1000);
59
60
In the above code, `foo` will get called once and will then block for one second.
61
@@ -70,7 +70,7 @@ the function itself.
70
71
72
73
- setTimeout(foo, 100);
+ setTimeout(foo, 1000);
74
75
foo();
76
0 commit comments