JavaScript - Metodo booleano toSource ()
Descrizione
JavaScript booleano toSource() restituisce una stringa che rappresenta il codice sorgente dell'oggetto.
Note - Questo metodo non è compatibile con tutti i browser.
Sintassi
La sua sintassi è la seguente:
boolean.toSource()
Valore di ritorno
Restituisce una stringa che rappresenta il codice sorgente dell'oggetto.
Esempio
Prova il seguente 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());
</script>
</body>
</html>
Produzione
({title:"Perl", publisher:"Leo Inc", price:200})