练习:有一个黄色的小狗,叫大黄,今年已经三岁了,250斤的重量每次走路都很慢,喜欢吃大骨头
<script>
function Dog(color,name,age,weight){
this.color = color;
this.name = name;
this.age = age;
this.weight = weight;
this.walk = function(){
console.log(this.name + "摇摇晃晃的摆动");
}
this.eat = function(){
console.log(this.name+"喜欢吃大骨头,但是咬不动");
}
}
//创建对象
var d = new Dog("黄色","大黄",3,250);
console.log(d);
d.walk();
d.eat();
console.log(d.name);
</script>