function person(name,age){
this.Name=name;
this.Age=age;
this.sayhello = fuction(){
alert("hello,I am"+this.Name+",I"+this.Age+"years old");
}
}
var p1 = new person ("huangjiangmiao",6);
p1.sayhello();
this.Name=name;
this.Age=age;
this.sayhello = fuction(){
alert("hello,I am"+this.Name+",I"+this.Age+"years old");
}
}
var p1 = new person ("huangjiangmiao",6);
p1.sayhello();