자바스크립트 - 객체 생성 방식(리터럴 방식)

안녕하세요

이번에는 자바스크립트에서 객체를 생성하는 두번째 방법을 올려봅니다.

<script type="text/javascript">
//객체 생성 방식 2 => 객체 리터럴 방식
//객체리터럴 방식은 하나의 객체만 만들 수 있게 된다(싱글톤 방식)
function go(){
var tv={
width:150,
height:100,
color:'white',
weight:'20kg',
off:function(){
alert("전원 껐어요");
},
on:function(){
alert('전원 켰어요');
}
}
console.log("색상==>"+tv.color);
tv.on();
tv.off();
</script>
</head>
<body>
<button onclick="go();">객체2</button> // off, on 메소드 실행
</body>
</html>


댓글 없음:

댓글 쓰기