<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
for(var i = 1; i <= 5; i++) {
document.write("Hello, World!<br>");
}
document.write("for문 종료 후 i값 = " + i);
document.write("<hr>");
var i = 1;
while(i <= 5) {
document.write("Hello, World!<br>");
i++;
}
document.write("while문 종료 후 i값 = " + i);
document.write("<hr>");
document.write("<table border='1'>");
document.write("<tr>");
document.write("<th>번호</th>");
document.write("<th>이름</th>");
document.write("<th>아이디</th>");
document.write("</tr>");
var i = 1;
while(i <= 3) {
document.write("<tr>");
document.write("<td>2</td>");
document.write("<td>이순신</td>");
document.write("<td>leess</td>");
document.write("</tr>");
i++;
}
document.write("</table>");
</script>
</head>
<body>
<hr>
<table border="1">
<tr>
<th>번호</th>
<th>이름</th>
<th>아이디</th>
</tr>
<tr>
<td>1</td>
<td>홍길동</td>
<td>hong</td>
</tr>
<tr>
<td>2</td>
<td>이순신</td>
<td>leess</td>
</tr>
<tr>
<td>3</td>
<td>강감찬</td>
<td>kang</td>
</tr>
</table>
</body>
</html>
Insert title here
| 번호 |
이름 |
아이디 |
| 1 |
홍길동 |
hong |
| 2 |
이순신 |
leess |
| 3 |
강감찬 |
kang |