Descripción
JavaScript booleano toSource() El método devuelve una cadena que representa el código fuente del objeto.
Note - Este método no es compatible con todos los navegadores.
Sintaxis
Su sintaxis es la siguiente:
boolean.toSource()
Valor devuelto
Devuelve una cadena que representa el código fuente del objeto.
Ejemplo
Pruebe el siguiente ejemplo.
<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>
Salida
({title:"Perl", publisher:"Leo Inc", price:200})