JavaScript Boolean.toSource() メソッドは、オブジェクトのソース コードを表す文字列を返します。
注: この方法は Internet Explorer では機能しません。
文法
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()); </script> </body> </html>
これにより、次の結果が生成されます:
({title:"Perl", publisher:"Leo Inc", price:200})