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

107
Visualizações
How can JS code remove blank string between other strings in text?

For JS, an array of text is set in the arr variable:

let arr = ["When I consider every thing that grows",
"",
"Holds in perfection but a little moment,",
"",
"That this huge stage presenteth nought but shows",
"",
"Whereon the stars in secret influence comment;"];

How to remove the empty lines from it, and that it remains as an array, but without the empty strings:

result

about 4 years ago · Santiago Trujillo
1 Respostas
Responde à pergunta

0

You can use a boolean filter for this:

arr.filter(Boolean)

Full Code:

let arr = [
  "When I consider every thing that grows",
  "",
  "Holds in perfection but a little moment,",
  "",
  "That this huge stage presenteth nought but shows",
  "",
  "Whereon the stars in secret influence comment;"
];
console.log(arr.filter(Boolean));

Gives me:

[
  "When I consider every thing that grows",
  "Holds in perfection but a little moment,",
  "That this huge stage presenteth nought but shows",
  "Whereon the stars in secret influence comment;"
]
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