0
Object.prototype.getB = function() {
// how to get the current value a
return a.b;
};
const a = {b: 'c'};
a.getB();
ご覧のとおり、すべてのObject値に機能を加えたいと思います。そして、私はこの関数でオブジェクトの値を取得し、何かをする必要があります。カスタムObject.prototype.xxx関数でオブジェクト自体を取得する方法は?