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 String | |
|---|---|
| Implemented in | JavaScript 1.3 |
| ECMAScript Edition | none |
Syntax
string.toSource()
Parameters
None.
Description
The toSource method returns the following values:
- For the built-in
Stringobject,toSourcereturns the following string indicating that the source code is not available:
function String() {[native code]}
- For instances of
Stringor string literals,toSourcereturns a string representing the source code.
This method is usually called internally by JavaScript and not explicitly in code.