내부 함수
내부 함수는 함수 안에 함수를 선언하는 함수를 말합니다.
내부 함수
내부 함수는 함수 안에 함수를 선언하는 함수를 말합니다.
function 외부 함수이름(){
//실행 코드
function 내부 함수이름(){
//실행 코드
}
내부 함수이름();
}
외부 함수이름();
Sample1
화살표 함수를 사용하는 기본 예제입니다.
결과
함수가 출력되었습니다.
함수가 출력되었습니다.
함수가 출력되었습니다.
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>내부 함수</title>
<script>
function outter(){
function inner(){
var title = "함수가 출력되었습니다.<br>";
document.write(title);
}
inner();
}
outter();
function outter2(){
var title = "함수가 출력되었습니다.";
function inner2(){
document.write(title);
}
inner2();
}
outter2();
</script>
</head>
<body>
</body>
</html>