Created
September 12, 2020 00:58
-
-
Save jerlyrosa/9bff014dc199ce478870f1e621f83af9 to your computer and use it in GitHub Desktop.
Metodos String.prototype.includes() y String.prototype.trim() en javascript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let textString = " Lorem ipsum dolor sit, sit amet consectetur adipisicing elit. ";// Cadena de texto. | |
//METODO INCLUDES() | |
//El método includes() determina si una cadena de texto puede ser encontrada dentro de otra cadena de texto, | |
//retornando true o false según corresponda. | |
let stringIncludes = textString.includes('sit'); | |
console.log(stringIncludes);//Comfirmamos en la consola | |
//METODO TRIM() | |
//El método trim() elimina los espacios en blanco en ambos extremos del string. Los espacios en blanco en este contexto, | |
//son todos los caracteres sin contenido (espacio, tabulación, etc.) | |
let stringTrim = textString.trim();//Este elimina los espacios en blancos de los laterales de una cadena. | |
console.log(stringTrim);//Comfirmamos en consola. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment