<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
/* for문 반복하기 : 중첩 for문 */
for(let i = 0; i < 5; i++) {
for(let j = 0; j < 30; j++) {
document.write('*');
}
document.write("<br>");
}
</script>
</body>
</html>