ClassName.prototype = {
sex x(value) {
...
}
}
NewClass.prototype = Object.create(Class.prototype, {
a: {
set: function () {...}
}
});
NewClass.prototype = Object.create(Class.prototype);
Object.defineProperty(NewClass.prototype, 'a', {
set: function () {...}
});