function Cm(color,weight,pin,xing){
this.color=color;
this.weight=weight;
this.pin=pin;
this.xing=xing;
this.skill=function skill(kk){
console.log(kk);
}
}
var dianshi=new Cm('pink','18kg','tcl','24寸')
console.log(dianshi);
dianshi.skill('可以看电影、听音乐、打游戏、敲代码')