Home > Web Front-end > JS Tutorial > body text

JavaScript method toSource() returns a string representing the source code of an object

黄舟
Release: 2017-11-08 10:42:49
Original
1521 people have browsed it

Definition and Usage

toSource() method returns a string representing the source code of the object.

Syntax

object.toSource()
Copy after login

Tips and Comments

Comment: This method does not work in Internet Explorer.

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>
Copy after login

Output:

({name:"Bill Gates", job:"Engineer", born:1985})
Copy after login

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>
Copy after login

This will produce the following results:

Returned string is : ["orange", "mango", "banana", "sugar"]
Copy after login

The above is the detailed content of JavaScript method toSource() returns a string representing the source code of an object. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!