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 adds an image in web page?
<div> <img> <span>
<img src="http://coursesweb.net/imgs/webcourses.gif" width="191" height="63" alt="Courses-Web" />
Which of these CSS codes displays the text oblique?
font-style: italic; text-decoration: underline; font-weight: 500;
#id {
  font-style: italic;
}
Click on the jQuery function used to hide with animation a HTML element.
click() hide() show()
$(document).ready(function() {
  $(".a_class").click(function(){ $(this).hide("slow"); });
});
Click on the correctly defined function in PHP.
fname function() {} function fname() {} function $fname() {};
function fname($a, $b) {
  echo $a * $b;
}
defineProperty and defineProperties

Last accessed pages

  1. Keep the first Nr IMG tags, Strip all the others (302)
  2. PHP getElementById and getElementsByTagName (49153)
  3. Shape Tween - Flash Animation (6046)
  4. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (137629)
  5. Read Excel file data in PHP - PhpExcelReader (96715)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (318)
  2. Read Excel file data in PHP - PhpExcelReader (116)
  3. The Four Agreements (96)
  4. PHP Unzipper - Extract Zip, Rar Archives (91)
  5. The Mastery of Love (85)
Chat
Chat or leave a message for the other users
Full screenInchide