Descrição
Booleano JavaScript toSource() método retorna uma string que representa o código-fonte do objeto.
Note - Este método não é compatível com todos os navegadores.
Sintaxe
Sua sintaxe é a seguinte -
boolean.toSource()
Valor de retorno
Retorna uma string que representa o código-fonte do objeto.
Exemplo
Experimente o seguinte exemplo.
<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>
Resultado
({title:"Perl", publisher:"Leo Inc", price:200})