toSource

Non-standard

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 Date object, toSource returns the following string indicating that the source code is not available:
function Date() {
   [native code]
}
  • For instances of Date, toSource returns a string representing the source code.

This method is usually called internally by JavaScript and not explicitly in code.

See Also

Object.toSource

Tags (0)

Edit tags
  • No tags

Attachments (0)

 

Attach file