Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

125
Vistas
Log array element if string exists

I wanted to loop through an array and check if a string exists in the array elements and my code below partially works. The problem is currently it logs the array element if a specified string exists anywhere in the array element but what I want to do is log if the string is in the array element but also the same index position. To explain this better say one of my array elements is testing and the string I'm looking for is tes because tes is occurring in the index position 0,1,2 the element logs. But say my array element is not testing and the string I'm looking for is tes it won't log because even though the string exists it's in the wrong index. How can I achieve this? Thanks in advance.

const myArray = ['test blah', 'this is test', 'testing 234', 'nothing']

const check = 'te'
for (var i = 0; i < myArray.length; i++) {
  if (myArray[i].includes(check)) {
    //should print myArray[0] and myarray[2]
    console.log(myArray[i]);
  }
}

about 4 years ago · Santiago Gelvez
1 Respuestas
Responde la pregunta

0

You can use startsWith()

const myArray = ['test blah', 'this is test', 'testing 234', 'nothing']

const check = 'tes'
for (let i = 0; i < myArray.length; i++) {
  if (myArray[i].startsWith(check)) {
    console.log(myArray[i]);
  }
}

about 4 years ago · Santiago Gelvez Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda