diff options
-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() { |