92 lines
2.7 KiB
HTML
92 lines
2.7 KiB
HTML
<!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.
|
|
<!-- 1. length: 20
|
|
2. aleatório: Math.random e intervalo de A a Z
|
|
3. substituir o digito a cada 2 digitos por 0
|
|
4. transformar o array em string-->
|
|
</p>
|
|
<script>
|
|
const generateRandomString = () => {
|
|
let arrLetras = [];
|
|
const characters =
|
|
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
|
|
for (let i = 0; i < 20; i++) {
|
|
let num = Math.floor(Math.random() * characters.length);
|
|
let letra = characters.charAt(num);
|
|
if ((i + 1) % 3 == 0) {
|
|
letra = 0;
|
|
}
|
|
arrLetras.push(letra);
|
|
}
|
|
console.log(arrLetras.join(""));
|
|
};
|
|
generateRandomString();
|
|
</script>
|
|
<p>TESTE 2</p>
|
|
<p>
|
|
Um dia tem 24 horas, quantos segundos tem em uma semana? faça em
|
|
javascript
|
|
<!--
|
|
1. quantos segundos tem em 24 horas
|
|
2. multiplicar o resultado acima por 7
|
|
-->
|
|
</p>
|
|
<script>
|
|
function calcular() {
|
|
const horas = 24;
|
|
const minutos = 60;
|
|
const segundos = 60;
|
|
const segundosHora = minutos * segundos;
|
|
const segundosDia = 24 * segundosHora;
|
|
const resultado = segundosDia * 7;
|
|
console.log(
|
|
`Uma hora tem ${segundosHora} segundos. Um dia tem ${segundosDia} segundos. Uma semana tem ${resultado} segundos`
|
|
);
|
|
}
|
|
calcular();
|
|
</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 array 40 numeros aleatorios
|
|
2-logica percorrer elementos para descobrir quais elementos sao pares
|
|
3-logica percorrer elementos para descobrir quais elementos sao divisiveis por 5-->
|
|
</p>
|
|
<script>
|
|
function paresDiv5() {
|
|
let numeros = [];
|
|
let NumParesDiv5 = [];
|
|
|
|
for(let i = 0; i < 40; i++){
|
|
let numero = Math.floor(Math.random() * 100);
|
|
numeros.push(numero);
|
|
|
|
}
|
|
|
|
for(let i = 0; i < numeros.length; i++){
|
|
if(numeros[i] % 2 === 0 && numeros[i] % 5 === 0){
|
|
NumParesDiv5.push(numeros[i]);
|
|
}
|
|
}
|
|
|
|
console.log(NumParesDiv5);
|
|
|
|
}
|
|
paresDiv5();
|
|
</script>
|
|
</body>
|
|
</html>
|