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.
1 parent 80a65ff commit bcb31deCopy full SHA for bcb31de
doc/ja/other/timeouts.md
@@ -58,11 +58,9 @@ JavaScriptは非同期なので、`setTimeout`と`setInterval`関数を使って
58
59
このカプセル化は`setTimeout`の呼び出しだけでなく、呼び出しのスタッキングを防止してより詳細なコントロールが出来ます。`foo`それ自身が今や、再度実行するかしないかを決める事が出来るのです。
60
61
-### Manually Clearing Timeouts
+### 手動でタイムアウトをクリアする
62
63
-Clearing timeouts and intervals works by passing the respective ID to
64
-`clearTimeout` or `clearInterval`, depending which `set` function was used in
65
-the first place.
+タイムアウトとインターバルのクリアは、`clearTimeout`か`clearInterval`に個別のIDを渡せば出来ます。最初に`set`関数を使った場所に依存します。
66
67
var id = setTimeout(foo, 1000);
68
clearTimeout(id);
0 commit comments