JavaScript - Méthode booléenne toSource ()

La description

JavaScript booléen toSource() La méthode retourne une chaîne représentant le code source de l'objet.

Note - Cette méthode n'est pas compatible avec tous les navigateurs.

Syntaxe

Sa syntaxe est la suivante -

boolean.toSource()

Valeur de retour

Renvoie une chaîne représentant le code source de l'objet.

Exemple

Essayez l'exemple suivant.

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

Production

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