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

210
Visualizações
How do I add lists from objects to other objects (connected with id)

I have two JSON files and I need to get the program to log the names from the other and under each name I need to log a list of titles that belong to that name from another JSON file. They are connected with an id but on the other file the correct id is named "id" and on the other, it's "userId" (and there is a key-id also but refers to something else.

The data is from here: https://jsonplaceholder.typicode.com/posts and here https://jsonplaceholder.typicode.com/users

What I need is something like this:

name1<br>
-title1<br>
-title2<br>
-title3<br>
-title4<br>

name2<br>
-title5 <br>
-title6<br>
-title7<br>
-title8
about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

One solution is to use a nested for-loop:

for (let user of users) {
  console.log(user.name);
  for (let title of titles) {
    if (user.id == title.userId) {
      console.log(`\t- ${title.title}`);
    }
  }
}

Results in something like:

Leanne Graham
    - sunt aut facere repellat provident occaecati excepturi optio reprehenderit
    - qui est esse
    - ea molestias quasi exercitationem repellat qui ipsa sit aut
    - eum et est occaecati
    - nesciunt quas odio
    # ...
Ervin Howell
    - et ea vero quia laudantium autem
    - in quibusdam tempore odit est dolorem
    # ...

about 4 years ago · Juan Pablo Isaza 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