객체 생성1
CODEDRAGON ㆍDevelopment/JavaScript, jQuery, ...
반응형
Object()생성자 함수 이용
전체 소스
<html> |
<head> |
<meta charset="UTF-8"> |
<title>객체 생성</title> |
<script type="text/javascript"> |
//Object()메소드를 이용해서 foo라는 빈 객체 생성 |
var foo = new Object(); |
//foo객체에 프로퍼티 생성 |
foo.name ='fname'; |
foo.age =33; |
foo.gender='femaile'; |
//출력 |
document.write(typeof foo); |
console.log(foo); |
</script> |
</head> |
<body> |
</body> |
</html> |
출처: <https://github.com/10zeroone/study_javascript/blob/master/WebContent/ch06-object/16.html#L2>
출력 결과
'Development > JavaScript, jQuery, ...' 카테고리의 다른 글
01.html-객체 생성 2 (0) | 2014.09.02 |
---|---|
00.jQuery 기본 (0) | 2014.08.31 |
프로젝트 생성 (0) | 2014.08.24 |
jQuery API 문서 2 (0) | 2014.08.23 |
객체 (Object) (0) | 2014.08.19 |