The JavaScript exception "can't redefine non-configurable property" occurs when it was
attempted to redefine a property, but that property is non-configurable....const obj = Object.create({}); Object.defineProperty(obj, "foo"..."bar" }); Object.defineProperty(obj, "foo", { value: "baz" }); //...