]
둘 JavaScript 객체지향 작성 방법의 종류와 차이점
http://www.jb51.net/article/13211.htm
JavaScript 객체지향 요약본 소개
http://www.jb51 .net/article/17541.htm<script>
function user()
{
this.age=21;
this.name="zhangsan";
this.say=function(){
alert("hello");
}
}
var u = new user();
alert(u["age"]);
alert(u.name);
u.say();
</script>