매개변수의 정보를 담는 arguments

function pair(){
 alert(arguments[0]);
}

pair(2,3,4,5)

출력결과: 2

Posted by kunoo
,