자바스크립트에서 파라미터 값을 arguments 로 받아 올 수 있다.

 

참고사이트:

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/arguments

 

The arguments object

arguments is an Array-like object accessible inside functions that contains the values of the arguments passed to that function.

developer.mozilla.org

 

예시)

 

function doSubmit(){

    var argOne = arguments[0];

    var argTwo = arguments[1];

}

 

호출할 때:

    doSubmit(null, '1');

이렇게 하면 이름이 똑같은 함수를 호출한다.

그리고, argOne 안에는 null 값이 argTwo 안에는 1 이 들어가진다.

+ Recent posts