diff options
author | moretall <seongho4996@naver.com> | 2021-12-04 01:42:37 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-04 01:42:37 +0900 |
commit | 7ac8f72abe3f15b51625a6920cc47f04521e1104 (patch) | |
tree | ee302645f30b4cb748784e83314ba4e92ab6d394 /files | |
parent | d4705b6909ad92293a389619f984b18d65e9e89a (diff) | |
download | translated-content-7ac8f72abe3f15b51625a6920cc47f04521e1104.tar.gz translated-content-7ac8f72abe3f15b51625a6920cc47f04521e1104.tar.bz2 translated-content-7ac8f72abe3f15b51625a6920cc47f04521e1104.zip |
Update index.html (#3252)
fix typo
Diffstat (limited to 'files')
-rw-r--r-- | files/ko/learn/javascript/first_steps/what_is_javascript/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ko/learn/javascript/first_steps/what_is_javascript/index.html b/files/ko/learn/javascript/first_steps/what_is_javascript/index.html index 614ab821e5..078a5010a0 100644 --- a/files/ko/learn/javascript/first_steps/what_is_javascript/index.html +++ b/files/ko/learn/javascript/first_steps/what_is_javascript/index.html @@ -154,7 +154,7 @@ function updateName() { <h3 id="JavaScript_running_order">자바스크립트 실행 순서</h3> -<p>브라우저에서 자바스크립트를 만났을 때 일반적으로는 위에서 아래 순서대로 실행됩니다. 이는 순서에 주의해서 코드를 작성해야한다는 의미입니다. 예를 들어, 아래의 첫번째 예재를 통해 자바스크립트 블록을 반환해봅시다:</p> +<p>브라우저에서 자바스크립트를 만났을 때 일반적으로는 위에서 아래 순서대로 실행됩니다. 이는 순서에 주의해서 코드를 작성해야한다는 의미입니다. 예를 들어, 아래의 첫번째 예제를 통해 자바스크립트 블록을 반환해봅시다:</p> <pre class="brush: js notranslate">const para = document.querySelector('p'); //HTML 요소 중 p태그를 선택 |