Descrição
Este método retorna uma string que representa o objeto especificado.
Sintaxe
Sua sintaxe é a seguinte -
string.toString( )
Valor de retorno
Retorna uma string que representa o objeto especificado.
Exemplo
Experimente o seguinte exemplo.
<html>
<head>
<title>JavaScript String toString() Method</title>
</head>
<body>
<script type = "text/javascript">
var str = "Apples are round, and Apples are Juicy.";
document.write(str.toString( ));
</script>
</body>
</html>
Resultado
Apples are round, and Apples are Juicy.