development #2
96
Aula2.html
96
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,45 @@
|
||||
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
|
||||
</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.
|
||||
</p>
|
||||
<script></script>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user