-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
54 lines (36 loc) · 939 Bytes
/
Index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="pt-br">
<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>
<script>
console.log("Hello World")
console.log(5)
console.log(43.78)
console.log(true)
console.log(false)
let mensagem = "Olá, mundo!"
console.log(mensagem)
mensagem = "Alteração de mensagem"
console.log(mensagem)
const pi = 3.1415
console.log(pi)
var idade = 28
console.log(idade)
var idade = 30
console.log(idade)
const a = 6
const b = a
console.log(a)
console.log(b)
console.log(Math.pow(3,3))
console.log(3**3)
console.log(4 % 2)
console.log(15 % 7)
</script>
</body>
</html>