//
class Point {
toString() {
console.log("打印");
}
}
// 为类添加方法:方式一
Point.prototype.say = function() {
console.log(" 360");
};
// 为类添加方法:方式二 Object.assign 是对象合并的意思
Object.assign(Point.prototype, {
getName: function() {
console.log(" 852852");
},
getAge: function() {
console.log(" 85285289");
}
});
// this.say
Object.assign ( { name: '1',age: 2}, { si: 'status',age: 5220 })
class People {
say() {
console.log( " say");
}
};
let obj = new Point();
obj.toString();
obj.say();
obj.getName();