Home | History | Annotate | Download | only in Date

Lines Matching defs:Date

24     ECMA Section:       15.9.5 Properties of the Date prototype object
27 The Date prototype object is itself a Date object (its [[Class]] is
28 "Date") whose value is NaN.
30 The value of the internal [[Prototype]] property of the Date prototype
33 In following descriptions of functions that are properties of the Date
34 prototype object, the phrase "this Date object" refers to the object that
37 [[Class]] property is "Date". Also, the phrase "this time value" refers
38 to the number value for the time represented by this Date object, that is,
39 the value of the internal [[Value]] property of this Date object.
42 Date: 12 november 1997
48 var TITLE = "Properties of the Date Prototype Object";
54 Date.prototype.getClass = Object.prototype.toString;
57 "Date.prototype.getClass",
58 "[object Date]",
59 Date.prototype.getClass() );
61 "Date.prototype.valueOf()",
63 Date.prototype.valueOf() );
65 "Date.prototype.__proto__ == Object.prototype",
67 Date.prototype.__proto__ == Object.prototype );