Javascript Tutorial Object

Properties

  1. Access a not-defined properties for an object in JavaScript
  2. Access properties via bracket notation in JavaScript
  3. Demenstrate that Primitive values can't have dynamic properties in JavaScript
  4. Determine If an Object Has a Property in JavaScript
  5. Enumerate an Object's Properties in JavaScript
  6. Reference property name with space in JavaScript
  7. Use number based property names in JavaScript
  8. Use variable as the property name in JavaScript

Add

  1. Add methods to an object after object being created in JavaScript
  2. Add methods to objects in JavaScript
  3. Add properties to an Object in JavaScript
  4. Create an object and add new properties in JavaScript

Compare

  1. Compare to object for equality in JavaScript

Method

  1. Convert objec to a number with Number function(object's the valueOf() method is called) in JavaScript
  2. document.writeln() calls toString() in JavaScript
  3. toLocaleString() calls each item's toLocaleString() instead of toString() to get its string value in JavaScript

Literal

  1. Create object with Object literal notation in JavaScript
  2. Pass in value with Object literals in JavaScript

Delete

  1. Delete a property or method from an object in JavaScript
  2. Use delete operator to delete properties or array elements in JavaScript

Constructor

  1. Use Object constructor acts as a factory method for primitive data types in JavaScript