La propiedad de longitud() en TypeScript que se usa para obtener la longitud de la string
Sintaxis:
string.length
Valor devuelto: este método devuelve la longitud a la función String que creó el objeto.
Los siguientes ejemplos ilustran la propiedad de longitud de string en TypeScript
Ejemplo 1:
JavaScript
<script> // Original strings var str = "Geeksforgeeks - Best Platform"; // use of length Property var newstr = str.length console.log("Return Value of Length property:", newstr); </script>
Producción:
Return Value of Length property: 29
Ejemplo 2:
JavaScript
<script> // Original strings var str = new String("TypeScript - String length Property"); // use of length Property var newstr = str.length console.log("Length:", newstr); </script>
Producción:
Length: 35
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA