ES6 - toSource ()

Javascript booleano toSource() restituisce una stringa che rappresenta il codice sorgente dell'oggetto.

Note - Questo metodo non è compatibile con tutti i browser.

Di seguito è riportata la sintassi per lo stesso.

boolean.toSource()

Esempio

<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>

Il seguente output viene visualizzato in caso di corretta esecuzione del codice precedente.

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