1 2 3 4 5 6
var p = new Proxy({ get a() { } }, { defineProperty() { return true; } }); Object.defineProperty(p, "a", { value: 1 });