Thursday, November 20, 2025
HomeLanguagesJavascriptJavaScript Object defineProperties() Method

JavaScript Object defineProperties() Method

The Object.defineProperties() method in JavaScript is a standard built-in Object that defines a new or modifies existing properties directly on an object and it returns the object.

Syntax: 

Object.defineProperties(obj, props) 

Parameter: 

  • Obj: This parameter holds the object on which the properties are going to be defined or modified.
  • Props: This parameter is an object whose own enumerable properties constitute descriptors for the properties to be defined or modified.

Return Value: This method returns an object which is passed as an argument to the function.

Below examples illustrate the Object.defineProperties() method in JavaScript:

Example 1: In this example, we will define new properties to an object using the Object.defineProperties() method in JavaScript.

javascript




const geek = {};
  
Object.defineProperties(geek, {
    prop1: {
        value: "neveropen",
        writable: true
    },
    prop2: {}
});
  
console.log(geek.prop1);
console.log(geek.prop2);


Output: 

"neveropen"
undefined

Example 2: In this example, we will define new properties and modify some properties of an object using the Object.defineProperties() method in JavaScript.

javascript




let geek = {};
Object.defineProperties(geek, {
    'prop1': {
        value: "Geeks",
        writable: true
    },
    'prop2': {
        value: 'Hello',
        writable: false
    }
});
console.log(geek.prop2);
console.log(geek.prop1);
  
const geek1 = {};
Object.defineProperties(geek1, {
    prop1: {
        value: "Hi",
        value: "Hello",
        value: "Namaste",
    },
    prop2: {
        value: " And ",
    },
    prop3: {
        value: "learn",
        value: "Stay Safe",
    }
});
  
console.log(geek1.prop1, geek1.prop2, geek1.prop3);


Output: 

"Hello"
"Geeks"
"Namaste" " And " "Stay Safe"

We have a complete list of Javascript Object methods, to check those please go through this JavaScript Object Complete Reference article.

Supported Browsers: The browsers supported by Object.defineProperties() method are listed below: 

  • Google Chrome 6.0 and above
  • Internet Explorer 9.0 and above
  • Mozilla 4.0 and above
  • Opera 11.1 and above
  • Safari 5.0 and above
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32404 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6777 POSTS0 COMMENTS
Nicole Veronica
11925 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11994 POSTS0 COMMENTS
Shaida Kate Naidoo
6905 POSTS0 COMMENTS
Ted Musemwa
7160 POSTS0 COMMENTS
Thapelo Manthata
6861 POSTS0 COMMENTS
Umr Jansen
6846 POSTS0 COMMENTS