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

126
Vistas
Find which element in an array contains a string

If I have an array like this

["one","two","three","hello","world","bar"]

How would I find which object in the array is "Hello"?

about 4 years ago · Santiago Trujillo
2 Respuestas
Responde la pregunta

0

const arr = ["one","two","three","hello","world","bar"];

const index = arr.indexOf("hello");
console.log(index)

about 4 years ago · Santiago Trujillo Denunciar

0

You could use findIndex() or indexOf(). Both return the index of the item if it is in the array or -1 if it is not.

const array = ["one","two","three","hello","world","bar"]
const result = array.findIndex(item => item === "hello");
if(result === -1) console.log("Not found");
else console.log(`"hello" found at index ${result} in array: array[${result}] = ${array[result]}`);

const array = ["one", "two", "three", "hello", "world", "bar"]
const result = array.indexOf("hello");
if (result === -1) console.log("Not found");
else console.log(`"hello" found at index ${result} in array: array[${result}] = ${array[result]}`);

about 4 years ago · Santiago Trujillo 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