JavaScript Boolean.toSource()方法返回表示对象源代码的字符串。

注意-此方法并非与所有浏览器都兼容。

toSource() - 语法

boolean.toSource()

toSource() - 返回值

返回表示对象源代码的字符串。

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()); 
      </script>      
   </body>
</html>

运行上面代码输出

({title:"Perl", publisher:"Leo Inc", price:200})

参考链接

https://www.learnfk.com/javascript/boolean-tosource.html