note

arguments 객체 본문

JavaScript/기본

arguments 객체

투한 2012. 3. 12. 09:54








<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>arguments</title>
<script>
	function sumAll(){
		alert(typeof (arguments) + ' : ' + arguments.length);
	}
	//함수를 호출합니다.
	sumAll(1,2,3,4,5,6,7,8,9);
</script>
</head>
<body>

</body>
</html>








눈에 보이지 않지만 자동적으로 함수 안에 arguments가 들어가 있다(항상)
 












'JavaScript > 기본' 카테고리의 다른 글

가변인자 함수  (0) 2012.03.12
return 키워드  (0) 2012.03.12
선언적 함수의 재정의 / 익명 함수의 재정의  (2) 2012.03.12
함수의 호출  (0) 2012.03.12
익명함수  (0) 2012.03.12