can i add getters and setters using defineproperty method in JavaScript

JavaScript
x
19
var person = {};
Object.defineProperty(person, "name", {
get: function () {
return this._name;
},
set: function (value) {
if (value.length < 4) {
alert("Name is too short.");
return;
}
this._name = value;
},
enumerable: true, // default is false - can be enumerated in a for-in loop.
configurable: true // default is false - can be deleted and changed to a data property.
});
🤖 Code Explanation
The code defines a person object with a name property. The name property is set to be enumerable and configurable, and has a getter and setter function. The setter function has an error message if the value is less than 4 characters.

More problems solved in JavaScript




















