JavaScript, das einer Immobilie nur von Getter zugewiesen ist, ist nicht zulässig
'use strict';
let obj2 = { get x() { return 17; } };
// assignment to a getter-only property
obj2.x = 5; // throws an error
SAMER SAEID