[intro]     [up]

Class ObjectMap

Extends Class: Map

A Map used to get/set an object properties.

Example
var person = {name:"John Smith", age:35, sex:"male"};
var map = new ObjectMap(person);
map.remove("age");
alert(map.getPairs());


Constructor Arguments
Name Type Default Description
object Object   The object

Properties
object The object



Properties
object
The object