Repositório de exercícios das aulas da Trybe
Dúvidas? me pergunte! Estou a disposição Link
- Item de exemplo
- Subitem 1
- Subitem 2
- Orientações:
- Adicione os arquivos
git add . - Faça um commit
git commit -m 'Mensagem' - Submeta os arquivos com push `git push -u origin destino
function studentAverage() {
return alunos
.map((student, index) => ({
name: student,
average: (notas[index]
.reduce((acc, element) => acc + element, 0) / notas[index].length),
}))
}
