일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- https://tecoble.techcourse.co.kr/post/2021-08-07-logback-tutorial/
- 국회의원 & 높으신 분들 어록
- https://minkwon4.tistory.com/161
Archives
- Today
- Total
OPEN between Secret
Inner Function 본문
반응형
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script type="text/javascript">
<!--
function square(length){
return length*length
}
function phytagoras(w,h){
return Math.sqrt(square(w) + square(h));
}
//사각형 면적 구하기
function square(width, height){
return width*height;
}
/* -1- 이렇게 square을 정의해놓으면 math.sqrt 에서 square을 부를때
사각형 면적을 구하는 square에 불려져서 h가 없는 값과 w 가 없는 값이 구해진후 더해져서 nan값이 반환된다.-> -2-
*/
alert(phytagoras(3,4));
//-->
</script>
</head>
<body>
</body>
</html>
// -2- inner function -> 그래서 내부에서 직접 사용할 함수를 함수 안에서 구현해놓은 것이다
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script type="text/javascript">
<!--
function phytagoras(w,h){
function square(length){
return length*length
}
return Math.sqrt(square(w) + square(h));
}
//사각형 면적 구하기
function square(width, height){
return width*height;
}
alert(phytagoras(3,4));
//-->
</script>
</head>
<body>
</body>
</html>
반응형
'java > Java script & jQuery' 카테고리의 다른 글
java script (0) | 2014.07.28 |
---|---|
Dom Level2 EventModel (0) | 2014.07.28 |
여러 객체를 하나의 이벤트로 처리하는방법?? (0) | 2014.07.28 |
Java script 에서 객체생성? (0) | 2014.07.28 |
Java Script 에서 Method's overloading 하기 (0) | 2014.07.28 |