Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

125
Visualizações
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 Respostas
Responde à pergunta

0

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

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

about 4 years ago · Santiago Trujillo Relatório

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 Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda