new Object()생성자 함수 이용
CODEDRAGON ㆍDevelopment/JavaScript, jQuery, ...
반응형
new Object()생성자 함수 이용
new 키워드와 Object()생성자 함수를 통해 객체를 생성합니다.
//Object()메소드를 이용해서 foo라는 빈 객체 생성 var foo = new Object();
//foo객체에 프로퍼티 생성 foo.name ='foo'; foo.age =33; foo.gender='femaile';
//출력 document.write(typeof foo); console.log(foo);
|
'Development > JavaScript, jQuery, ...' 카테고리의 다른 글
하이브리드 앱을 구성하는 기술 (0) | 2019.03.24 |
---|---|
생성자 함수 이용하여 객체 생성 (0) | 2019.03.17 |
JavaScript 구성요소 (0) | 2019.03.05 |
모바일 웹(Mobile Web) (0) | 2019.02.27 |
Ajax와 Form 요소, 직렬화(serialization), jQuery Ajax 보조 메서드 (0) | 2019.02.22 |