Table of contents
- 1. Summary
- 2. Syntax
- 3. Parameters
- 4. Description
- 5. See Also
Summary
Returns a string representing the source code of the object.
Method of Date | |
|---|---|
| Implemented in | JavaScript 1.3 |
| ECMAScript Edition | ECMAScript 1st Edition |
Syntax
date.toSource()
Parameters
None.
Description
The toSource method returns the following values:
- For the built-in
Dateobject,toSourcereturns the following string indicating that the source code is not available:
function Date() {
[native code]
}
- For instances of
Date,toSourcereturns a string representing the source code.
This method is usually called internally by JavaScript and not explicitly in code.
Mozilla Developer Network