El método include() se puede usar para verificar si una string contiene una substring específica. Devuelve verdadero si la substring está presente. Este método distingue entre mayúsculas y minúsculas.
Sintaxis:
string.includes(searchvalue, start)
Parámetros: este método requiere 2 parámetros: –
- valor de búsqueda: Obligatorio . Especifica la substring que debe buscarse.
- inicio: Opcional . Especifica el índice desde donde se realiza la búsqueda. Por defecto es 0.
Valor de retorno: verdadero si la substring especificada está presente en la string; de lo contrario, devuelve falso .
Ejemplo:
<!DOCTYPE html> <html> <body> <h1>Welcome to GeeksforGeeks</h1> <p>Click the button to check whether <b>Geeks</b> is present in the below string. </p> Hello there! Welcome to GeeksforGeeks.<br><br> <button onclick="myFunction()">Try it</button> <p id="display"></p> <!--script to check string contains the specified substring.--> <script> function myFunction() { var str = "Hello there! Welcome to GeeksforGeeks."; var flag = str.includes("Geeks"); document.getElementById("display").innerHTML = flag; } </script> </body> </html>
Salida:
Antes de hacer clic en el botón Pruébelo:
Después de hacer clic en el botón Pruébelo:
Navegadores compatibles: Los navegadores compatibles con el método include() se enumeran a continuación:
- Google cromo 41
- safari de manzana 9
- Firefox 40
- Ópera 28
- Borde 12.0
Publicación traducida automáticamente
Artículo escrito por ProgrammerAnvesh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA