Develop
2013.12.17 14:05

[js] 객체 머지..

Views 8963 Votes 0 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
나중에 정리해서 다시 올릴것..

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
No. Category Subject Author Date Views
85 System/OS [linux] 텔넷, FTP 텍스트 모드에서 사용 hooni 2003.04.23 11939
84 System/OS [linux] 랜카드가 2개 일 때 네트워크 설정 hooni 2003.04.23 30015
83 System/OS [linux] 아파치설치/설정 - 알리어싱(aliasing) hooni 2003.04.23 51368
82 System/OS [linux] 아파치설치/설정 - 사용인증 hooni 2003.04.23 15084
81 System/OS [linux] 아파치설치/설정(모니터링) hooni 2003.04.23 14153
80 System/OS [linux] 아파치 설치/설정(proxy) hooni 2003.04.23 12965
79 System/OS [linux] 아파치설치/설정 - SSI(Server Side Include) hooni 2003.04.23 13206
78 System/OS [linux] 아파치설치/설정(CGI부분) hooni 2003.04.23 14568
77 System/OS [linux] 아파치설치/설정 hooni 2003.04.23 14492
76 System/OS [linux] 새 하드디스크 추가하기..(내공쌓기) hooni 2003.04.23 13807
75 System/OS [linux] 기본적인 설정하기(내공쌓기) hooni 2003.04.23 13993
74 System/OS [linux] 계정관리하기(내공쌓기) hooni 2003.04.23 13157
73 System/OS [linux] 프로그램 설치방법 (내공쌓기) hooni 2003.04.23 13433
72 System/OS [linux] 간단한 vi편집기 사용 명령 hooni 2003.04.23 13456
71 System/OS [linux] 기본 명령어 (내공쌓기) hooni 2003.04.23 14333
70 System/OS [linux] 리눅스 활용 팁^^ hooni 2003.04.23 14629
Board Pagination Prev 1 ... 67 68 69 70 71 74 Next
/ 74