JavaScript Przypisanie do właściwości tylko getter jest niedozwolone

'use strict';

let obj2 = { get x() { return 17; } };

// assignment to a getter-only property
obj2.x = 5; // throws an error
SAMER SAEID