'use strict'; let obj2 = { get x() { return 17; } }; // assignment to a getter-only property obj2.x = 5; // throws an error