목차 1.자바스크립트의 구조<script type = "text/javacript> 자바스크립트 코드 작성 </script> <script type = "javascript> 자바스크립트 코드 </script> 자바스크립트 선언문 타입은 2가지 <script type = "text/javacript></script>와 <script type = "javascript></script>2.주석문 사용 // 주석문이 한줄일 경우 사용 /* 주석문이 두줄 이상일 경우 사용 */ 3.리터럴 123456// 숫자 타입 "1234567"// 문자열 타입 true//Boolean타입 null// 객체 없음. 4.자바스크립트의 위치-<HEAD> 태그에 위치하는 경우 <head> <script type="text/javascript"> document.write("hello javascript"); </script> </head> -<BODY>태그에 위치하는 경우 <head> </head> <script type="text/javascript"> document.write("hello javascript"); </script> -js파일 불러오는 방법 <head> <script type="text/javascript" src="불러올 파일 경로"></script> </head> 공유하기 게시글 관리 JungYO 목차 목차 닫기