Functions.properties revision 1601:ca4d50be062e
1Object.setIndexedPropertiesToExternalArrayData=sets ByteBuffer to hold indexed data (nashorn extension)
2
3Object.getPrototypeOf=returns the prototype of the specified object
4
5Object.setPrototypeOf=sets the prototype of the given object (ES6)
6
7Object.getOwnPropertyDescriptor=returns a property descriptor for an own property (not inherited property)
8
9Object.getOwnPropertyNames=returns an array of all properties (enumerable or not) found directly on the given object
10
11Object.getOwnPropertySymbols=returns an array of all symbol properties found directly on the given object (ES6)
12
13Object.create=creates a new object with the specified prototype object and properties
14
15Object.defineProperty=adds an own property and/or update the attributes of an existing own property of an object
16
17Object.defineProperties=defines new or modifies existing properties directly on the given object
18
19Object.seal=prevents new properties from being added to the given object and marks existing properties as non-configurable
20
21Object.freeze=prevents new properties from being added to the given object and prevents existing properties from being removed or re-configured
22
23Object.preventExtensions=prevents new properties from ever being added to the given object
24
25Object.isSealed=tells if an object is sealed or not
26
27Object.isFrozen=tells if an object is frozen or not
28
29Object.isExtensible=tells if an object is extensible or not
30
31Object.keys=returns an array of the given object's own enumerable properties
32
33Object=creates a new script object or converts given value as a script object
34
35Object.prototype.toString=returns a string representation of this object
36
37Object.prototype.hasOwnProperty=tells whether this object has the specified property or not
38
39Object.prototype.isPrototypeOf=tests for this object in another object's prototype chain
40
41Object.prototype.propertyIsEnumerable=tells whether the given property is enumerable or not
42
43Object.bindProperties=binds the source object's properties to the target object (nashorn extension)
44
45Function=creates a new function with the given parameters and function body
46
47Function.prototype.toString=returns a string representation of this function
48
49Function.prototype.apply=invokes the function with the given this-reference and arguments array
50
51Function.prototype.call=invokes the function with the given this-reference and arguments
52
53Function.prototype.bind=returns a new function with bound this-reference and arguments
54