Definition and usage
toSource() method represents the source code of object.
This primitive value is inherited by all objects derived from the Array object. The
toSource() method is usually called automatically by JavaScript in the background and does not appear explicitly in the code.
Syntax
object.toSource()
Browser support
Only Gecko core browsers (such as Firefox) support this method, which means IE, Safari, Chrome, Opera and other browsers This method is not supported.
Example
The following example shows you the usage of toSource() method:
<script type="text/javascript"> function employee(name,job,born) { this.name=name; this.job=job; this.born=born; } var bill=new employee("Bill Gates","Engineer",1985); document.write(bill.toSource()); </script>
Output
({name:"Bill Gates", job:"Engineer", born:1985})
Example:
<html> <head> <title>JavaScript Array toSource Method</title> </head> <body> <script type="text/javascript"> var arr = new Array("orange", "mango", "banana", "sugar"); var str = arr.toSource(); document.write("Returned string is : " + str ); </script> </body> </html>
This will produce the following result:
Returned string is : ["orange", "mango", "banana", "sugar"]
The above is the detailed content of JavaScript method toSource() that represents the source code of an object. For more information, please follow other related articles on the PHP Chinese website!