CODEDRAGON ㆍDevelopment/JavaScript, jQuery, ...
length 프로퍼티
함수가 정상적으로 실행 될 때 기대되는 인자의 개수
소스 코드
<html>
<head>
<meta charset="UTF-8">
<title>함수 객체의 length 프로퍼티</title>
<script type="text/javascript">
function func0() {
}
function func1(x) {
return x;
}
function func2(x, y) {
return x + y;
}
function func3(x, y, z) {
return x + y + z;
}
document.write('func0.length : ' + func0.length + '<br>');
document.write('func1.length : ' + func1.length + '<br>');
document.write('func2.length : ' + func2.length + '<br>');
document.write('func3.length : ' + func3.length);
</script>
</head>
<body>
</body>
</html>
출처: <https://github.com/10zeroone/study_javascript/blob/master/WebContent/ch04-function/22.html>
함수 선언 시 정의한 인자 개수가 출력됨을 확인할 수 있습니다.
'Development > JavaScript, jQuery, ...' 카테고리의 다른 글
매개변수 (0) | 2014.08.04 |
---|---|
함수 객체의 length 프로퍼티 (0) | 2014.08.01 |
함수 객체의 표준 프로퍼티 확인 (0) | 2014.07.25 |
값으로 할당 (0) | 2014.07.23 |
함수도 객체 (0) | 2014.07.18 |