WEB.JS/04.함수_JS
chapter09 : 재귀함수
GAWON
2023. 5. 19. 09:35
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
//"Hello" 문자열을 입력 받은 횟수 만큼 출력하는 재귀함수 작성
function sayHello(n) {
if (n != 0) {
document.write("Hello");
sayHello(n - 1);
}
}
```
sayHello(5);
```
</script>
</head>
<body>
</body>
</html>