Web/JavaScript/Reference/Global objects/Array/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 array.
Syntax
arr.toSource()
Return value
A string representing the source code of the array.
Description
The toSource method returns the following values:
For the built-in
Arrayobject,toSourcereturns the following string indicating that the source code is not available:function Array() { [native code] }- For instances of
Array,toSourcereturns a string representing the source code.
This method is usually called internally by JavaScript and not explicitly in code. You can call toSource while debugging to examine the contents of an array.
Examples
Examining the source code of an array
To examine the source code of an array:
var alpha = new Array('a', 'b', 'c');
alpha.toSource();
//returns ['a', 'b', 'c']
Specifications
Not part of any standard. Implemented in JavaScript 1.3.
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
Array.prototype.toSource() by Mozilla Contributors is licensed under CC-BY-SA 2.5.