10
여러 인수와 옵션 개체
여러 인수로 JavaScript 함수를 만들 때 항상이 선택에 직면합니다. 인수 목록 전달과 옵션 개체 전달. 예를 들어 nodeList를 배열에 매핑하는 함수를 작성하고 있습니다. function map(nodeList, callback, thisObject, fromIndex, toIndex){ ... } 대신 이것을 사용할 수 있습니다 : function map(options){ ... } 여기서 options는 객체입니다. options={ nodeList:..., callback:..., thisObject:..., fromIndex:..., toIndex:... …