Skip to content

Instantly share code, notes, and snippets.

@khg0712
Created May 19, 2018 17:30
Show Gist options
  • Save khg0712/a3428c04676c7b2a56ccbd700c76472f to your computer and use it in GitHub Desktop.
Save khg0712/a3428c04676c7b2a56ccbd700c76472f to your computer and use it in GitHub Desktop.
arguments 객체에 apply 메서드를 통한 표준 배열 메서드 사용 예시
function myAdd(){
console.dir(arguments);
Array.prototype.shift.apply(arguments);
console.dir(arguments);
}
myAdd(1,2,3,4);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment