Compare commits
4 Commits
ff06bfade6
...
2dea22c7af
Author | SHA1 | Date | |
---|---|---|---|
2dea22c7af | |||
158b9a642a | |||
2b48a754ca | |||
91fa71699a |
113
Aula2.html
113
Aula2.html
@ -1,17 +1,19 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Document</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>TESTE 1</p>
|
||||
<p>
|
||||
Um texto tem 20 dígitos , a cada 2 dígitos tem um número 0 , os dígitos
|
||||
são letras aleatórias , faça isso com javascript.
|
||||
<!--
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Document</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<p>TESTE 1</p>
|
||||
<p>
|
||||
Um texto tem 20 dígitos , a cada 2 dígitos tem um número 0 , os dígitos
|
||||
são letras aleatórias , faça isso com javascript.
|
||||
<!--
|
||||
1. criar array
|
||||
2. lenght: 20
|
||||
3. gerar letras array
|
||||
@ -20,35 +22,62 @@
|
||||
6. trocar os digitos a cada dois digitos por 0;
|
||||
7. transformar o array em texto;
|
||||
-->
|
||||
</p>
|
||||
<script>
|
||||
function transformaTexto() {
|
||||
let texto = [];
|
||||
let alfabeto = "abcdefghijklmnopqrstuvxywzABCDEFGHIJKLMNOPQRSTUVXYWZ";
|
||||
for (let i = 0; i < 20; i++) {
|
||||
let indice = Math.floor(Math.random() * alfabeto.length);
|
||||
let caracter = alfabeto.charAt(indice);
|
||||
console.log(caracter);
|
||||
if ((i + 1) % 3 === 0) {
|
||||
caracter = 0;
|
||||
}
|
||||
texto.push(caracter);
|
||||
</p>
|
||||
<script>
|
||||
function transformaTexto() {
|
||||
let texto = [];
|
||||
let alfabeto = "abcdefghijklmnopqrstuvxywzABCDEFGHIJKLMNOPQRSTUVXYWZ";
|
||||
for (let i = 0; i < 20; i++) {
|
||||
let indice = Math.floor(Math.random() * alfabeto.length);
|
||||
let caracter = alfabeto.charAt(indice);
|
||||
console.log(caracter);
|
||||
if ((i + 1) % 3 === 0) {
|
||||
caracter = 0;
|
||||
}
|
||||
console.log(texto.join(""));
|
||||
texto.push(caracter);
|
||||
}
|
||||
transformaTexto();
|
||||
</script>
|
||||
<p>TESTE 2</p>
|
||||
<p>
|
||||
Um dia tem 24 horas, quantos segundos tem em uma semana? faça em
|
||||
javascript
|
||||
</p>
|
||||
<script></script>
|
||||
<p>TESTE 3</p>
|
||||
<p>
|
||||
uma array contendo 40 numeros aleatórios, retornar somente os números
|
||||
pares divisíveis por 5, faça isso em javascript.
|
||||
</p>
|
||||
<script></script>
|
||||
</body>
|
||||
</html>
|
||||
console.log(texto.join(""));
|
||||
}
|
||||
transformaTexto();
|
||||
</script>
|
||||
<p>TESTE 2</p>
|
||||
<p>
|
||||
Um dia tem 24 horas, quantos segundos tem em uma semana? faça em
|
||||
javascript
|
||||
|
||||
<!-- 1 - criar variavei para armazenar minutos, segundos e horas em segundos
|
||||
2- calcular quantos segundos tem um dia;
|
||||
3 - calcular e retornar o resultado de quantos segundos tem uma semana -->
|
||||
</p>
|
||||
<script>
|
||||
const segundos = 1;
|
||||
const minutes = segundos * 60;
|
||||
const horaEmSegundos = (minutes * 60)
|
||||
const diaEmSegundos = (horaEmSegundos * 24);
|
||||
|
||||
const segundosDaSemana = diaEmSegundos * 7;
|
||||
console.log(`Uma semana contém ${segundosDaSemana} segundos`)
|
||||
</script>
|
||||
<p>TESTE 3</p>
|
||||
<p>
|
||||
uma array contendo 40 numeros aleatórios, retornar somente os números
|
||||
pares divisíveis por 5, faça isso em javascript.
|
||||
<!-- 1- criar um array vazio
|
||||
2 - gerar numero randomico
|
||||
3 - iterar o array com os valores randomicos gerados
|
||||
4 - filtrar apenas os valores que forem pares divisiveis por 5
|
||||
5 - armazenar esses valores no novo array
|
||||
6 - retornar esse novo array -->
|
||||
</p>
|
||||
<script>
|
||||
let arr = [];
|
||||
for (let i = 0; i < 40; i++) {
|
||||
let randomicNubmber = Math.floor(Math.random() * 1000 + 1);
|
||||
arr.push(randomicNubmber)
|
||||
}
|
||||
somenteParesDivisiveiPor5 = arr.filter(element => (element % 2 === 0 && element % 5 === 0));
|
||||
console.log(somenteParesDivisiveiPor5);
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user