JavaScript atribuindo a uma propriedade somente getter não é permitida
'use strict';
let obj2 = { get x() { return 17; } };
// assignment to a getter-only property
obj2.x = 5; // throws an error
SAMER SAEID