From 818e144cf1651e6722d3f2199260087413c476c0 Mon Sep 17 00:00:00 2001 From: rsneiva <@672887sd> Date: Fri, 24 Jan 2020 14:55:55 -0300 Subject: [PATCH] =?UTF-8?q?exerc=C3=ADcios?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit desafio por Rodrigo neiva --- execicio01.html | 31 +++++++++++++++++++ exercicio02.html | 32 ++++++++++++++++++++ exercicio03.html | 77 ++++++++++++++++++++++++++++++++++++++++++++++++ exercicio04.html | 14 +++++++++ script.js | 26 ++++++++++++++++ 5 files changed, 180 insertions(+) create mode 100644 execicio01.html create mode 100644 exercicio02.html create mode 100644 exercicio03.html create mode 100644 exercicio04.html create mode 100644 script.js diff --git a/execicio01.html b/execicio01.html new file mode 100644 index 0000000..1b87376 --- /dev/null +++ b/execicio01.html @@ -0,0 +1,31 @@ + + + + + + + Escrevento + + + + + +

+ + + + + \ No newline at end of file diff --git a/exercicio02.html b/exercicio02.html new file mode 100644 index 0000000..7b2bd87 --- /dev/null +++ b/exercicio02.html @@ -0,0 +1,32 @@ + + + + + + + Elementos + + + +

+ + + + \ No newline at end of file diff --git a/exercicio03.html b/exercicio03.html new file mode 100644 index 0000000..ad3c8d2 --- /dev/null +++ b/exercicio03.html @@ -0,0 +1,77 @@ + + + + + + + Timeout + + + + +

Exibir Caracteres

+ + + + + + \ No newline at end of file diff --git a/exercicio04.html b/exercicio04.html new file mode 100644 index 0000000..ca916e4 --- /dev/null +++ b/exercicio04.html @@ -0,0 +1,14 @@ + + + + + + + Document + + + +

+ + + \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..c9fb9a8 --- /dev/null +++ b/script.js @@ -0,0 +1,26 @@ +function nomes(){ + var lista = [ + { + nome: "Thiago", + idade: 4567 + }, + { + nome: "Caio", + idade: 8 + }, + { + nome: "Bruno", + idade: 24 + } + ] + + + for(let pos = 0; pos< lista.length; pos++){ + + var res = document.getElementById('texto') + res = document.write(lista[pos].nome) + } + + +} +