// class
class Shouji{
constructor(brand,price){
this.brand=brand;
this.price=price;
}
//必须使用该语法,不能使用ES5的对象完整形式
call(){
console.log(“我可以打电话!!!!”);
}
}
let onePlus=new Shouji(“1+”,1999);
console.log(onePlus);
11-06
634
11-04
117