4
I’m lost, where is the logic of the code?
const contatos = [
{
nome: 'Alex Júnior',
numero: '1234-5678'
},
{
nome: 'Carolina Moya',
numero: '1234-6789'
},
{
nome: 'Fernando Jorge',
numero: '12345-5567'
}
];
const [, Carol] = contatos; // Não entendi esse trecho
function mostraNumero({numero}){
console.log(numero)
}
mostraNumero(Carol);
What is the purpose of the excerpt const [, Carol] = contacts, I could not understand?