Contents

Develop
2013.12.17 14:05

[js] 객체 머지..

조회 수 9911 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
나중에 정리해서 다시 올릴것..

function test(a,b,c,d,e){
    if(b==undefined) b = 1;
    if(c==undefined) c = 1;
}
//test함수 호출시에 a,d,e 만 인자를 전달하고 b, c는 기본값을 사용하고 싶다면?
a:10, d:20, e:30
test(a,,,d,e);


function test(opt){
    var dft = {a:1, b:1, c:1, d:1, e:1};
    $.extend(dft, opt);
}

test({a:10, d:20, e:30});


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
709 Develop [c] 암호화 알고리즘 DES 구현 ㅋㅋ file hooni 2013.04.23 8556
708 Develop [c] KNN(K-nearest neighbor) 패턴인식 과제.. file hooni 2013.04.23 8557
707 Develop [c] 맵서치인 듯(옛날 컴에서 찾은 자료) file hooni 2013.04.23 8560
706 Develop [ajax] 이벤트 코드 생성기 작업중.. ㅋㅋ file hooni 2013.04.23 8564
705 Develop [c] 무선 Radius Server 자료.. file hooni 2013.04.23 8566
704 Develop [c] 플러드 필링 (flood filling) 알고리즘.. file hooni 2013.04.23 8570
703 Develop [c] 더블(이중) 연결리스트 예제.. file hooni 2013.04.23 8584
702 Develop [c] 텍스트 파일(로그)을 정해진 라인 단위로 쪼개주는 코드 file hooni 2013.04.23 8586
701 Develop [c] 문자열 str_shift 예제.. file hooni 2013.04.23 8589
700 Develop [java] 파일 라인수 계산하는 프로그램 (하위 디렉토리까지..) file hooni 2013.04.23 8594
699 Develop [chm] 비주얼 C++ 팁 모음 문서 file hooni 2013.04.23 8595
698 Develop [c] 심심해서.. fseek() 예제.. file hooni 2003.04.23 8613
Board Pagination Prev 1 ... 35 36 37 38 39 40 41 42 43 44 ... 99 Next
/ 99