Saturday, November 15, 2025
HomeLanguagesJavascriptJavaScript TypeError – Setting getter-only property “x”

JavaScript TypeError – Setting getter-only property “x”

This JavaScript exception setting getter-only property works in strict-mode only and occurs if the user tries to set a new value to a property for which only a getter is specified.

Message:

TypeError: Assignment to read-only properties is 
           not allowed in strict mode (Edge)
TypeError: setting getter-only property "x" (Firefox)
TypeError: Cannot set property "prop" of #<Object> 
           which has only a getter (Chrome)

Error Type:

TypeError

Cause of the Error: The user is trying to set a new value to a property for which only a getter is defined.

Example 1: In this example, the getter method is defined for the object. The property can not be accessed directly.

Javascript




"use strict";
function GFG_Fun() {
    let temp = null;
    Object.defineProperty(this, 'temp', {
        get: function () {
            return temp;
        }
    });
}
let obj = new GFG_Fun();
obj.temp;
obj.temp = 100; // Error here


Output:

TypeError: Cannot set property temp of 
#<GFG_Fun> which has only a getter

Example 2: In this example, the getter method is defined for the object ‘Person’. Property ‘Age’can not be accessed directly.

Javascript




"use strict";
function Person(ageP) {
    let age = ageP;
    Object.defineProperty(this, 'age', {
        get: function () {
            return age;
        }
    });
}
let p = new Person(22);
p.age = 30;  // TypeError


Output:

TypeError: Cannot set property age of 
#<Person> which has only a getter
RELATED ARTICLES

Most Popular

Dominic
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11917 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11985 POSTS0 COMMENTS
Shaida Kate Naidoo
6890 POSTS0 COMMENTS
Ted Musemwa
7143 POSTS0 COMMENTS
Thapelo Manthata
6838 POSTS0 COMMENTS
Umr Jansen
6840 POSTS0 COMMENTS