string.length es una propiedad en JavaScript que se usa para encontrar la longitud de una string determinada.
Sintaxis:
string.length
Parámetro: No acepta ningún parámetro.
Valores devueltos: Devuelve la longitud de la string dada.
Código #1:
<script> // Taking some strings var x = 'geeksforgeeks'; var y = 'gfg'; var z = ''; // Returning the length of the string. document.write(x.length + "<br>"); document.write(y.length + "<br>"); document.write(z.length); </script>
Producción:
13 3 0
Código #2:
<script> // Taking some strings. var x = '2341312134'; var y = '@#$%^&**((*&^'; // Variable z contains two spaces var z = ' '; // Returning the length of the string. document.write(x.length + "<br>"); document.write(y.length + "<br>"); document.write(z.length); </script>
Producción:
10 13 2
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