feat: cria resolucao de execicio de fixacao 2
This commit is contained in:
parent
ff06bfade6
commit
91fa71699a
14
Aula2.html
14
Aula2.html
@ -1,11 +1,13 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>Document</title>
|
<title>Document</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<p>TESTE 1</p>
|
<p>TESTE 1</p>
|
||||||
<p>
|
<p>
|
||||||
@ -43,7 +45,16 @@
|
|||||||
Um dia tem 24 horas, quantos segundos tem em uma semana? faça em
|
Um dia tem 24 horas, quantos segundos tem em uma semana? faça em
|
||||||
javascript
|
javascript
|
||||||
</p>
|
</p>
|
||||||
<script></script>
|
<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>TESTE 3</p>
|
||||||
<p>
|
<p>
|
||||||
uma array contendo 40 numeros aleatórios, retornar somente os números
|
uma array contendo 40 numeros aleatórios, retornar somente os números
|
||||||
@ -51,4 +62,5 @@
|
|||||||
</p>
|
</p>
|
||||||
<script></script>
|
<script></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue
Block a user