Closed
Description
Ecma 262 Objects reference http://www.ecma-international.org/ecma-262/5.1/#sec-15.2
Functions to implement:
- Object(..)
- new Object(..)
- Object.create Implement Object.create function #209
- Object.defineProperties Implement Object.defineProperties function #37
- Object.defineProperty
- Object.freeze Implement Object.freeze and Object.isFrozen function #202
- Object.getOwnPropertyDescriptor Implement Object.getOwnPropertyDescriptor function #81
- Object.getOwnPropertyNames Implement Object.keys and Object.getOwnPropertyNames #124
- Object.getPrototypeOf Implement Object.getPrototypeOf() #151
- Object.isExtensible Implement Object.isExtensible and Object.preventExtensions function #106
- Object.isFrozen Implement Object.freeze and Object.isFrozen function #202
- Object.isSealed Implement Object.seal and Object.isSealed function #172
- Object.keys Implement Object.keys and Object.getOwnPropertyNames #124
- Object.preventExtensions Implement Object.isExtensible and Object.preventExtensions function #106
- Object.seal Implement Object.seal and Object.isSealed function #172
Object prototype functions:
- Object.prototype.hasOwnProperty Implement Object.property.hasOwnProperty #41
- Object.prototype.isPrototypeOf Implement Object.prototype.isPrototypeOf #47
- Object.prototype.propertyIsEnumerable Implement Object.prototype.propertyIsEnumerable(). #99
- Object.prototype.toLocaleString Implement Object.prototype.toLocaleString #40
- Object.prototype.toString
- Object.prototype.valueOf