콘텐츠로 건너뛰기

자바스크립트에서 기본값 부여(객체로 넘김)

  • 기준


function test(options) {
if (options == undefined) options = {};
if (options.name == undefined) options.name = "기본 도형";
if (options.width == undefined) options.width = 10;
if (options.height == undefined) options.height = 10;
}

test({
name : "도형1",
width : 10,
height : 20
});

test({
name : "도형2"
});

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다