diff options
author | Kwang Hun Choi <mm9139@naver.com> | 2021-11-29 11:43:07 +0900 |
---|---|---|
committer | Kyle <mkitigy@gmail.com> | 2021-12-27 08:00:55 +0900 |
commit | c65ac038888b70cf2d28a8b177fe63db83bd7aee (patch) | |
tree | 134c8e1287a54eaa58b1e6fd917939a8d9501583 | |
parent | 437f1c32b130d597b71785f71ccc3c083fda496c (diff) | |
download | translated-content-c65ac038888b70cf2d28a8b177fe63db83bd7aee.tar.gz translated-content-c65ac038888b70cf2d28a8b177fe63db83bd7aee.tar.bz2 translated-content-c65ac038888b70cf2d28a8b177fe63db83bd7aee.zip |
Update index.html
add defer for external script.js
-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 078a5010a0..2c18af1301 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 @@ -255,7 +255,7 @@ function updateName() { <li>먼저, HTML 파일이 있는 디렉토리에 <code>script.js</code>라는 새로운 파일을 만듭니다. 파일의 확장자가 .js이면 그 파일이 자바스크립트로 이루어져 있음을 뜻합니다.</li> <li>아래의 태그를 HTML 코드에 복사 후 저장합니다.</li> <li> - <pre class="syntaxbox notranslate"><script src="script.js"></script></pre> + <pre class="syntaxbox notranslate"><script src="script.js" defer></script></pre> </li> <li>script.js 의 내용을 다음과 같이 바꿉니다. <pre class="notranslate"><code>function createParagraph() { |