JavaScript Programmer’s Reference Cross-references: ECMA 262 edition 2 (Web proxy server)
JavaScript Programmer’s Reference Cross-references: ECMA 262 edition 2 section 15.2.4.1 ECMA 262 edition 3 section 15.2.2 Object.eval() (Method) Evaluate the JavaScript source text passed in a string argument. Availability: JavaScript 1.1 JScript 3.0 Internet Explorer 4.0 Netscape 3.0 Netscape Enterprise Server version 2.0 Opera browser 3.0 Deprecated Property/method value type: Function result JavaScript syntax: -myObject.eval() Warnings: . This is now deprecated and may even be unavailable in recent versions of Netscape and JScript. You should use the eval() function available from the global object. See also: eval() Object.hasOwnProperty() (Method) A method that can be used to test whether a property exists and belongs to the receiving object. Availability: Property/method value type: JavaScript syntax: Argument list: For this method to yield a Boolean truevalue, the property named in the argument must exist and must belong to the receiving object. If the property is inherited from a prototype or earlier ancestor then this method returns false. 1582 ECMAScript edition 3 JavaScript 1.5 JScript 5.5 Internet Explorer 5.5 Netscape 6.0 Boolean primitive -myObject.hasOwnProperty(aName) aName The name of a property to test for