Web/JavaScript/Reference/Global objects/Number/toSource
ObsoleteThis feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
The toSource() method returns a string representing the source code of the object.
Syntax
numObj.toSource() Number.toSource()
Return value
A string representing the source code of the object.
Examples
Native function
For the built-in Number object, toSource() returns the following string indicating that the source code is not available:
function Number() {
[native code]
}
For instances of Number, toSource() returns a string representing the source code.
This method is usually called internally by JavaScript and not explicitly in web code.
Specifications
Not part of any standard.
Browser compatibility
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Update compatibility data on GitHub
| Desktop | Mobile | Server | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
Chrome
No support No |
Edge
No support No |
Firefox No support 1 — 74 No support 1 — 74 Notes' Starting in Firefox 74, |
IE
No support No |
Opera
No support No |
Safari
No support No |
WebView Android
No support No |
Chrome Android
No support No |
Firefox Android
Full support 4 |
Opera Android
No support No |
Safari iOS
No support No |
Samsung Internet Android
No support No |
nodejs
No support No |
Legend
- Full support
- Full support
- No support
- No support
- Non-standard. Expect poor cross-browser support.'
- Non-standard. Expect poor cross-browser support.
- See implementation notes.'
- See implementation notes.
See also
Number.prototype.toSource() by Mozilla Contributors is licensed under CC-BY-SA 2.5.