Javascript Course


The defineProperty() and defineProperties() are methods of the JavaScript Object class that can be used to add and modify properties dinamicaly directly on an object.


defineProperty()

defineProperty() - Defines a new property, or modifies an existing property of an object, and returns the object.

Syntax:
Object.defineProperty(obj, prop, {
 value: Prop_Value,
 configurable: true,
 enumerable: true
})
- obj - The object on which to define the property.
- prop - The name of the property to be defined or modified.
- Prop_Value - The value of the property specifieed to 'prop' parameter.
- configurable - if this attribute is set to false, the new added property cannot be then modified. Defaults to false.
- enumerable - if this attribute is set to false, the property not show up during enumeration of the properties on the corresponding object, will be stored only in memory. Defaults to false.

The third argument of this method (with the value of the property) is more complex, with some additional attributes. For a complete documentation see this page: developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Object/defineProperty


Example (see the comments in code):
// define an object
var sites = {
 'CoursesWeb': 'https://coursesweb.net/'
};

// modifies the 'CoursesWeb' property
Object.defineProperty(sites, 'CoursesWeb', {
 value: 'https://coursesweb.net/javascript'
});

// adds a new property
Object.defineProperty(sites, 'MarPlo', {
 value: 'https://marplo.net/',
 configurable: true,
 enumerable: true
});

// Test
document.write(sites.CoursesWeb +'<br>'+ sites.MarPlo);

/* Result:
 https://coursesweb.net/javascript/
 https://marplo.net/
*/

defineProperties()

defineProperties() - Sets or modifies multiple existing properties same time directly on an object, returning the object.

Syntax:
Object.defineProperties(obj, {
 'prop1': { value: value_prop1 },
 'prop2': { value_prop2 },
 // ...
})
- obj - The object on which to define or modify properties.
- 'prop1', 'prop2' - The name of the properties to be defined or modified.
- value_prop1, value_prop2 - The values of the properties to be defined or modified.

Example (see the comments in code):
// define an object
var sites = {
 'CoursesWeb': 'https://coursesweb.net/html/'
};

// modifies the 'CoursesWeb' property, and adds two new properties
// stores the object in another variable
var sites2 = Object.defineProperties(sites, {
 CoursesWeb: { value: 'https://coursesweb.net/' },
 MarPlo: { value: 'https://marplo.net/' },
 id: { value: 8 }
});

// Test properties in 'sites' and 'sites2'
document.write(sites.CoursesWeb +'<br>'+ sites2.id);

/* Result:
 https://coursesweb.net/
 8
*/
• Here's a practical example with the defineProperty() method. Data selected by the user from Select dropdown list are added as properties into an object, then, the object is displayed as JSON string.
<h4>Example with defineProperty()</h4>
<p>Write a name in the text field, select an Age and Gender.</p>

<div id='showob'>JSON object</div>
<form action='#' method='post'>
 Name: <input type='text' name='nmusr' id='nmusr' onkeyup='setObj(this.id, this.value)' /><br>
 Age: <select name='agusr' id='agusr' onchange='setObj(this.id, this.value)'>
 <option>---</option>
 <option value='5-8'>5-8</option>
 <option value='9-14'>9-14</option>
 <option value='15-20'>15-20</option>
 <option value='21-30'>21-30</option>
 <option value='31-45'>31-45</option>
 </select><br>
 Gender: <select name='gdusr' id='gdusr' onchange='setObj(this.id, this.value)'>
 <option>---</option>
 <option value='male'>Male</option>
 <option value='female'>Female</option>
 </select>
</form>
<script>
// set 'usrob' with one property
var usrob = {nmusr: 'name'};

// this function adds /modifies property in usrob, using defineProperty()
// converts it into a string, and displays it
function setObj(prop, val) {
 Object.defineProperty(usrob, prop, {
 value: val,
 configurable: true,
 enumerable: true
 });
 document.getElementById('showob').innerHTML = 'JSON object: <b>'+ JSON.stringify(usrob) +'</b>'; 
}
</script>

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which tag can be used to create input text field in web page?
<form> <input> <div>
<input type="text" name="a_name" value="val" />
Which CSS property displays the text in a small-caps font?
display font-variant font-style
h3 {
  font-variant: small-caps;
}
What instruction displays a notice box with a message inside it, in JavaScript?
for() Date() alert()
var msg = "Visit CoursesWeb.net";
alert(msg);
Indicate the PHP code used to get the users IP.
$_SERVER["HTTP_USER_AGENT"] $_SERVER["REMOTE_ADDR"] $_GET[]
$ip = $_SERVER["REMOTE_ADDR"];
echo $ip;
defineProperty and defineProperties

Last accessed pages

  1. Force Download files with PHP (5207)
  2. PuzzleImg - Script to Create Image Puzzle Game (9553)
  3. Numbers in JavaScript (587)
  4. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (143521)
  5. For loops in JavaScript (1007)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (754)
  2. CSS cursor property - Custom Cursors (93)
  3. Read Excel file data in PHP - PhpExcelReader (72)
  4. PHP-MySQL free course, online tutorials PHP MySQL code (67)
  5. The Mastery of Love (65)