我有這個片段的財產,但不明白爲什麼它會拋出試圖將值分配給定義爲可寫的屬性時出現錯誤:無法指定定義爲可寫
function Constructor()
{
Object.seal(this);
}
Object.defineProperties(Constructor.prototype,
{
field: {value: null, writable: true}
});
var instance = new Constructor();
instance.field = 'why this doesn\'t work??';