js练习题:构建函数创建一个电脑对象
该对象有颜色,重量,品牌,型号,可以看电影,听音乐,打游戏和敲代码。
function Computer(color,weight,brand,model){
this.color = color;
this.weight = weight;
this.brand = brand;
this.model = model;
this.amusement = function(movie,music,game,daima){
console.log(movie +'\n'+ music+'\n'+ game+'\n'+ daima);
}
}
var tezheng = new Computer('红褐色','1.5kg','联想','游戏本');
// for in循环 ,k只是变量 无意义,个人习惯定义名为k。
for(k in tezheng){
// tezheng[k]访问属性值
console.log(tezheng[k]);
}
tezheng.amusement('看电影','听音乐','打游戏','敲代码');