A continuación se muestra el ejemplo de la función String() .
- Ejemplo:
<script>
function
gfg() {
var
geek = Boolean(1);
var
geeks = Boolean(0);
var
string =
String(geek) +
"<br>"
+
String(geeks);
document.write(string);
}
gfg();
</script>
- Producción:
true false
La función String() se utiliza para convertir el valor de un objeto en un valor de string.
Sintaxis:
String(object)
Valores de parámetros: esta función acepta un solo parámetro como se mencionó anteriormente y se describe a continuación:
- objeto: este parámetro contiene una string que se convierte en un valor de string.
Valor devuelto: Devuelve un valor de string.
Programa: Devuelve el valor de string de Boolean.
<!DOCTYPE html> <html> <body> <center> <h1 style="color:green;"> Geeks for Geeks </h1> <button onclick="geek()"> Press </button> <h4> Clicking on the 'Press' button will return the String Value. </h4> <p id="gfg"></p> <script> function geek() { var x = Boolean(1); var y = Boolean(0); var string = String(x) + "<br>" + String(y); document.getElementById( "gfg").innerHTML = string; } </script> </center> </body> </html>
Producción:
Programa 2: Devuelve el valor de string del objeto Date().
<!DOCTYPE html> <html> <body> <center> <h1 style="color:green;"> Geeks for Geeks </h1> <button onclick="geek()"> Press </button> <h4>Clicking on the 'Press' button will return the String Value. </h4> <p id="gfg"></p> <script> function geek() { var y = Date(); var string = String(y); document.getElementById( "gfg").innerHTML = string; } </script> </center> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- Firefox
- explorador de Internet
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por riarawal99 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA