From f1a89d32c92e446a7c07054504b55d9628db0f46 Mon Sep 17 00:00:00 2001 From: leesuyeon <42996064+lee-suyeon@users.noreply.github.com> Date: Sat, 19 Feb 2022 15:04:59 +0900 Subject: Fix typo error in Timeouts and intervals (#4178) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 2분이 -> 2초가 --- .../ko/learn/javascript/asynchronous/timeouts_and_intervals/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'files/ko/learn/javascript/asynchronous') diff --git a/files/ko/learn/javascript/asynchronous/timeouts_and_intervals/index.html b/files/ko/learn/javascript/asynchronous/timeouts_and_intervals/index.html index 1f3d4f2a6a..378f0a5f55 100644 --- a/files/ko/learn/javascript/asynchronous/timeouts_and_intervals/index.html +++ b/files/ko/learn/javascript/asynchronous/timeouts_and_intervals/index.html @@ -52,7 +52,7 @@ translation_of: Learn/JavaScript/Asynchronous/Timeouts_and_intervals
Note: 타임아웃 콜백은 단독으로 실행되지 않기 때문에 지정된 시간이 지난 그 시점에 정확히 콜백 될 것이라는 보장은 없다. 그보다는 최소한 그 정도의 시간이 지난 후에 호출된다. 메인 스레드가 실행해야 할 핸들러를 찾기 위해 이런 핸들러들을 살펴보는 시점에 도달할 때까지 타임아웃 핸들러를 실행할 수 없다.
-아래 예제에서 브라우저는 2분이 지나면 익명의 함수를 실행하고 경보 메시지를 띄울 것이다. (see it running live, and see the source code):
+아래 예제에서 브라우저는 2초가 지나면 익명의 함수를 실행하고 경보 메시지를 띄울 것이다. (see it running live, and see the source code):
let myGreeting = setTimeout(function() { alert('Hello, Mr. Universe!'); -- cgit v1.2.3-54-g00ecf