Core JavaScript 1.5 Reference:Global Objects:Function:valueOf
From MDC
Contents |
[edit] Summary
Retrns a string representing the source code of the function.
| Method of Function | |
| Implemented in: | JavaScript 1.1 |
| ECMA Version: | ECMA-262 |
[edit] Syntax
valueOf()
[edit] Parameters
None.
[edit] Description
The valueOf method returns the following values:
- For the built-in
Functionobject,valueOfreturns the following string indicating that the source code is not available:
function Function() {
[native code]
}
- For custom functions,
toSourcereturns the JavaScript source that defines the object as a string. The method is equivalent to thetoStringmethod of the function.
This method is usually called internally by JavaScript and not explicitly in code.