(Overview 06) QUIZ
in JavaScript
SoloLearn JS 번역
QUIZ
- What are the three core languages in web pages?
- 웹 페이지의 세 가지 핵심 언어는 무엇인가?
HTML
CSS
JavaScript
- Please fill in the missing commands to add the file “code.js” to your web page.
- 웹 페이지에 “code.js” 파일을 추가해라.
<script type="text/javascript" src="code.js"></script>
- Why is the JavaScript code being placed just before the closing body tag?
- JS 코드가 닫는 body 태그 바로 앞에 위치하는 이유는 무엇인가?
To let the web page fully load in the browser window
웹 페이지가 완전히 로딩된 후 실행되도록 하기 위해