From c65ac038888b70cf2d28a8b177fe63db83bd7aee Mon Sep 17 00:00:00 2001 From: Kwang Hun Choi Date: Mon, 29 Nov 2021 11:43:07 +0900 Subject: Update index.html add defer for external script.js --- files/ko/learn/javascript/first_steps/what_is_javascript/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'files/ko/learn') 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() {
  • 먼저, HTML 파일이 있는 디렉토리에 script.js라는 새로운 파일을 만듭니다. 파일의 확장자가 .js이면 그 파일이 자바스크립트로 이루어져 있음을 뜻합니다.
  • 아래의 태그를 HTML 코드에 복사 후 저장합니다.
  • -
    <script src="script.js"></script>
    +
    <script src="script.js" defer></script>
  • script.js 의 내용을 다음과 같이 바꿉니다.
    function createParagraph() {
    -- 
    cgit v1.2.3-54-g00ecf