생성자와 new
객체
var person = {} // 비어있는 객체
person.name = 'egoing'; // 프로퍼티
person.introduce = function(){//메소드
return 'My name is '+this.name;
}
document.write(person.introduce()); // My name is egoing
// 좀더 나은 방법
var person = {
'name' : 'egoing', // 프로퍼티
'introduce' : function(){ //메소드
return 'My name is '+this.name;
}
}
document.write(person.introduce()); // My name is egoing 생성자
Last updated