ES6 - toSource () 方法
Javascript boolean toSource() 方法返回一个表示对象源代码的字符串。
注意 − 此方法并不兼容所有浏览器。
以下是其语法。
boolean.toSource()
示例
<html> <head> <title>JavaScript toSource() Method</title> </head> <body> <script type="text/javascript"> function book(title, publisher, price) { this.title = title; this.publisher = publisher; this.price = price; } var newBook = new book("Perl","Leo Inc",200); document.write("newBook.toSource() is : "+ newBook.toSource()); </script> </body> </html>
成功执行上述代码后将显示以下输出。
({title:"Perl", publisher:"Leo Inc", price:200})