-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (66 loc) · 1.32 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
</head>
<body id="body">
<div>
<header>
<h1>JavaScript</h1>
</header>
<div id="toolbar">
<input type="button" value="black" />
<input type="button" value="white" />
</div>
<nav>
<ul>
<li>
<a href="http://opentutorials.org/course/49/17">JavaScript</a>
</li>
<li>
<a href="http://opentutorials.org/course/49/16">변수와 상수</a>
</li>
<li>
<a href="http://opentutorials.org/course/49/18">연산자</a>
</li>
<li>
<a href="http://opentutorials.org/course/49/19">함수</a>
</li>
<li>
<a href="http://opentutorials.org/course/49/20">이벤트</a>
</li>
<li>
<a href="http://opentutorials.org/course/49/21">객체</a>
</li>
</ul>
</nav>
<article>
<h2>변수와 상수</h2>
<div>
<p>
변수란
</p>
<ul>
<li>
변하는 값
</li>
<li>
x = 10 일 때 왼쪽항인 x는 오른쪽 항인 10에 따라 다른 값이 지정된다.
</li>
</ul>
<p>
상수란
</p>
<ul>
<li>
변하지 않는 값
</li>
<li>
x = 10 일 때 오른쪽항인 10이 상수가 된다.
</li>
</ul>
</div>
</article>
</div>
</body>
</html>