diff --git a/aula_08-02-23/conteudo_aula/aula.js b/aula_08-02-23/conteudo_aula/aula.js new file mode 100644 index 0000000..cafa7cb --- /dev/null +++ b/aula_08-02-23/conteudo_aula/aula.js @@ -0,0 +1,21 @@ +var zoo = [ + "Leão", + "Girafa", + "Tigre", + "elefante", + "Jacaré" +] + +console.log(zoo); +console.log(zoo[1]); + + +//push() é usado para adicionar um elemento no final do seu array +zoo.push("Cobra"); + +for(i = 0; i < zoo.length; i++){ + console.log(`O animal na jaula ${i + 1} é o ${zoo[i]}`); +} + + +//zoo.forEach(animal => console.log(`O animal é o ${animal}`)) \ No newline at end of file diff --git a/aula_08-02-23/exercicio_1/calc-do_while.html b/aula_08-02-23/exercicio_1/calc-do_while.html new file mode 100644 index 0000000..13050c2 --- /dev/null +++ b/aula_08-02-23/exercicio_1/calc-do_while.html @@ -0,0 +1,37 @@ + + + + + + + + Tabuada + + + + + + + + + \ No newline at end of file diff --git a/aula_08-02-23/exercicio_1/calc-for.html b/aula_08-02-23/exercicio_1/calc-for.html new file mode 100644 index 0000000..409c45d --- /dev/null +++ b/aula_08-02-23/exercicio_1/calc-for.html @@ -0,0 +1,30 @@ + + + + + + + Tabuada + + + + + + + \ No newline at end of file diff --git a/aula_08-02-23/exercicio_1/calc-while.html b/aula_08-02-23/exercicio_1/calc-while.html new file mode 100644 index 0000000..0e2ce8d --- /dev/null +++ b/aula_08-02-23/exercicio_1/calc-while.html @@ -0,0 +1,36 @@ + + + + + + + + Tabuada + + + + + + + + + \ No newline at end of file diff --git a/aula_08-02-23/exercicio_2/index.html b/aula_08-02-23/exercicio_2/index.html new file mode 100644 index 0000000..e094f43 --- /dev/null +++ b/aula_08-02-23/exercicio_2/index.html @@ -0,0 +1,56 @@ + + + + + + + + Jogo de Palavras + + + + +
+

Bem vindo ao jogo dos Filmes!

+ +

Troque uma palavra do nome dos filmes e veja o que acontece!

+ +
+ + +
+
+ + + + + + \ No newline at end of file