"> Document "> Document ">
<!DOCTYPE html>
<html lang="en">
<head>
    <title>Document</title>
<script>
		// 자바의 for문이랑 문법이 같다.
    for(var i = 0; i<10; i++){
        console.log("반복 횟수 : " + i);
    }
</script>
</head>
<body>
</body>
</html>