스크립트의 위치
HTML파일 속
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>자바스크립트 기초</title>
<style>
body { font-size: 3rem; }
</stye>
<script>
document.write(111);
</script>
</head>
<body>
</body>
</html>
외부 파일
script.js
document.write('외부 js 파일에서 출력');
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>자바스크립트 기초</title>
<style>
body { font-size: 3rem; }
</stye>
**<script src="js/script.js"></script>**
</head>
<body>
</body>
</html>
경고창 띄우기
alert("반가워!");
콘솔에 출력하기
console.log(111)
주석
<html>
<!-- 인사 메시지 영역 -->
</html>
// 한 줄 주석
/*
여러 줄 주석
*/
스크립트를 넣는 위치
<head> ... </head>
에 넣었지만<body> ... </body>
의 마지막 부분에 넣는다var a = 100
a = 'ㅋㅋㅋ'
console.log(a)
이름 짓는 방법
var 자바스크립트 = 20000;
console.log(자바스크립트);
숫자 수
문자열
var message = '"엄마가 그런 짓 하면 안 돼!"라고 하셨어요';
var message = "\\"엄마가 그런 짓 하면 안 돼!\\"라고 하셨어요";
typeof
var a = 100;
var message = "hi"
console.log(typeof a);
console.log(typeof message);
var b;
console.log(b) // undefined
var c = true
console.log( 1 > 100 );
값과 참조
var a = 100;
var b = a; // 값 의미
a = 100;
console.log(a, b);