JavaScriptにおけるBoolean.toSource()方法の使用

776 ワード

JavaScript Boolean.toSourceメソッドは、オブジェクトのソースコードを表す文字列を返します.
注意:この方法はInternet Explorerでは実行されません.構文

boolean.toSource()

以下はパラメータの詳細です.
  •     NA
  • 戻り値
    オブジェクトのソースコードを表す文字列を返します.例:
    
    
    
    JavaScript toSource() Method
    
    
    
    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()); 
    
    
    
    
    
    これは以下の結果を生むだろう.
    
    ({title:"Perl", publisher:"Leo Inc", price:200})