Skip to content

Commit

Permalink
Adicionado um objeto global
Browse files Browse the repository at this point in the history
Este objeto é para o usuario acompanhar o banco de dados pelo console do navegador
  • Loading branch information
JoaoVitorDomingos committed Nov 9, 2024
1 parent 0ace869 commit 4b67634
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions scripts/pegar_alunos.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,25 @@ async function PegarAlunos() {

AdicionarAlunos(alunos.data)
CriarAulas(Dados.dias_aulas, Dados.aulas)
window.bancoDados = {
get alunos() {
return Dados.alunos
},

get aulas() {
console.log("Total de Aulas: ")
return Dados.aulas
},

get diasAulas() {
return Dados.dias_aulas
},

get atividades() {
console.log("Total de Atividades: ")
return Dados.atividades
}
}
}

function AdicionarAlunos(arrayAlunos) {
Expand Down

0 comments on commit 4b67634

Please sign in to comment.