2022-10-30 00:46:42 +00:00
|
|
|
<!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.
|
|
|
|
</p>
|
|
|
|
<script>
|
|
|
|
function TextTransform(){
|
|
|
|
console.log("Teste 1")
|
|
|
|
const Text = [];
|
|
|
|
const abc ="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
|
|
|
for(let i = 1;i < 20;i++){
|
|
|
|
let indice = Math.floor(Math.random()* abc.length);
|
|
|
|
let caracter = abc.charAt(indice)
|
|
|
|
if((i + 1)%3 === 0){
|
|
|
|
caracter = 0
|
|
|
|
}
|
|
|
|
Text.push(caracter)
|
|
|
|
}
|
|
|
|
console.log(Text.join(''));
|
|
|
|
}
|
|
|
|
TextTransform();
|
|
|
|
</script>
|
|
|
|
<p>TESTE 2</p>
|
|
|
|
<p>
|
|
|
|
Um dia tem 24 horas, quantos segundos tem em uma semana? faça em
|
|
|
|
javascript
|
|
|
|
<!--
|
|
|
|
Tranformar 24h em segundos = 86.400
|
|
|
|
Multiplicar o dia por 7 para a semana
|
|
|
|
-->
|
|
|
|
</p>
|
|
|
|
<script>
|
|
|
|
function Segundos () {
|
|
|
|
console.log("Teste 2")
|
|
|
|
dia = 86.400
|
|
|
|
semanas = dia * 7
|
|
|
|
console.log(semanas.toFixed(3))
|
|
|
|
}
|
|
|
|
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>
|
|
|
|
function numarr(){
|
|
|
|
console.log("Teste 3")
|
|
|
|
num = []
|
|
|
|
num2 = [0,1,2,3,4,5,6,7,8,9]
|
|
|
|
for(let i= 0;num.length < 40;i++){
|
|
|
|
digi1 = Math.floor(Math.random()*num2.length)
|
|
|
|
digi2 = Math.floor(Math.random()*num2.length)
|
|
|
|
intnum = Number(`${digi1}${digi2}`)
|
|
|
|
if( intnum%5===0){
|
|
|
|
if(intnum%2===0 && intnum != 00){
|
|
|
|
num.push(intnum)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
console.log(num)
|
|
|
|
}
|
|
|
|
numarr()
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|