A continuación se muestra el ejemplo del método string.valueOf().
- Ejemplo:
javascript
<script> var a = new String("GeeksforGeeks"); document.write(a.valueOf()); </script>
- Producción:
GeeksforGeeks
El string.valueOf() es un método incorporado en JavaScript que se usa para devolver el valor de la string dada.
Sintaxis:
string.valueOf()
Parámetros: No acepta ningún parámetro.
Valores devueltos: Devuelve una string que representa el valor del objeto de string dado.
Código JavaScript para mostrar el funcionamiento del método string.valueOf():
Programa 1:
javascript
<script> // Taking a string as input and printing it // with the help of string.valueOf() function var a = new String("GeeksforGeeks"); document.write(a.valueOf()); </script>
Producción:
GeeksforGeeks
Programa 2:
javascript
<script> // Taking a string as input and printing it // with the help of string.valueOf() function var a = new String("Geeks"); var b = new String("for"); var c = new String("Geeks"); document.write(a.valueOf(),b.valueOf(),c.valueOf()); </script>
Producción:
GeeksforGeeks
Navegador compatible:
- Chrome 1 y superior
- Borde 12 y superior
- Firefox 1 y superior
- Internet Explorer 4 y superior
- Ópera 3 y superior
- Safari 1 y superior
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA