Descripción
Este método devuelve el valor primitivo de un objeto String.
Sintaxis
Su sintaxis es la siguiente:
string.valueOf( )
Valor devuelto
Devuelve el valor primitivo de un objeto String.
Ejemplo
Pruebe el siguiente ejemplo.
<html>
<head>
<title>JavaScript String valueOf() Method</title>
</head>
<body>
<script type = "text/javascript">
var str = new String("Hello world");
document.write(str.valueOf( ));
</script>
</body>
</html>
Salida
Hello world