Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

Desafio: hora da prática 4

//Desafio 01
let listaGenerica = [];
//Desafio 02
let linguagensDeProgramacao = ['JavaScript','C','C++','Kotlin','Python'];
//Desafio 03
let linguagensDeProgramacao = ['JavaScript','C','C++','Kotlin','Python'];
linguagensDeProgramacao.push('Java','Ruby','Golang');
//Desafio 04
let listaNomes = ['Luna','Leina','Lily'];
console.log(listaNomes.find((elemento) => 'undefined' !== typeof elemento));
//Desafio 05
let listaNomes = ['Luna','Leina','Lily'];
console.log(listaNomes[listaNomes.findIndex((elemento) => 'undefined' !== typeof elemento) + 1]);
//Desafio 06
let listaNomes = ['Luna','Leina','Lily'];
console.log(listaNomes.findLast((elemento) => 'undefined' !== typeof elemento));
1 resposta
solução!

Oi, Leonardo, tudo bem?

O resultado do seu desafio ficou muito bacana. Parabéns por usar o find(), findIndex() e findLast() para buscar os elementos dentro da lista, o código ficou bem estruturado e segue as boas práticas da programação.

Continue se dedicando em seus estudos e caso tenha dúvidas, não hesite em postar no fórum!

Abraços e bons estudos!