aboutsummaryrefslogtreecommitdiff
path: root/files/ko
diff options
context:
space:
mode:
authorEvan Kim <sameness3@gmail.com>2021-10-29 09:26:41 +0900
committerGitHub <noreply@github.com>2021-10-29 09:26:41 +0900
commitf514e5cfa859686fd79f860c631e7ff3b0bb94c1 (patch)
treed2f11f67c1f610d78f0c5f05109b6628c9c03a59 /files/ko
parent8a09ec98556b3d373e892894d7a2980b54f36bcc (diff)
downloadtranslated-content-f514e5cfa859686fd79f860c631e7ff3b0bb94c1.tar.gz
translated-content-f514e5cfa859686fd79f860c631e7ff3b0bb94c1.tar.bz2
translated-content-f514e5cfa859686fd79f860c631e7ff3b0bb94c1.zip
Update index.html (#2875)
Diffstat (limited to 'files/ko')
-rw-r--r--files/ko/learn/javascript/asynchronous/concepts/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ko/learn/javascript/asynchronous/concepts/index.html b/files/ko/learn/javascript/asynchronous/concepts/index.html
index 78e4709701..8b1a12bf46 100644
--- a/files/ko/learn/javascript/asynchronous/concepts/index.html
+++ b/files/ko/learn/javascript/asynchronous/concepts/index.html
@@ -88,7 +88,7 @@ alertBtn.addEventListener('click', () =&gt;
<p>첫 번째 버튼을 클릭한 후 두 번째 버튼을 바로 클릭하면 경고 박스가 나타나지 않는 것을 확인할 수 있습니다. 첫 번째 버튼은 이벤트가 끝나기 전 까지 다음 작동을 막아버립니다.</p>
<div class="blockIndicator note">
-<p><strong>Note</strong>: OK, in our case, it is ugly and we are faking the blocking effect, but this is a common problem that developers of real apps fight to mitigate all the time.</p>
+<p><strong>Note</strong>: OK, 이 예시가 Blocking 효과를 설명하기에는 구리지만, 실제로 개발자가 겪는 일반적인 문제입니다.</p>
</div>
<p>왜 이런 현상이 발생할까요? 답은 자바스크립트는 기본적으로 <strong>single threaded</strong>이기 때문입니다. 이 시점에서 <strong>threads</strong>의 개념을 소개할 필요가 있겠군요</p>