<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>피라미드</title>
</head>
<body>
<script>
/* 중첩 반복문
반복문을 여러 겹 중첩해 사용
*/
let output = '';
//중첩 반복문
/*
1) 첫번째 줄에는 공백이 몇개 출력이 될까?
*/
for (let i = 1; i < 15; i++) { // 줄단위
for (let j = 15; j > i; j--) { // 공백
output += ' ';
}
for (let k = 0; k < 2 * i - 1; k++) { // 별 출력
output += '*';
}
output += '\n';
}
console.log(output);
</script>
</body>
</html>