-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariaveis2.html
33 lines (26 loc) · 1016 Bytes
/
variaveis2.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Javascript</title>
<!-- não podemos usar números e nem aracteres especiais em nomes de vaariaveis -->
<script>
//null - ausência intencional de valor.
//podemos obter como retorno de uma função o valor null.
var teste = null;
//undefined - valor indefinido, não atribuido. Na declaração de variaveis sem valor, ela é undefined.
// obtemos quando tentamos acessar um valor não definido ou inexistente.
var teste2 = undefined;
console.log(teste)
//console.log(teste2)
//modificando o valor da variavel.
teste = "Valor modificado com sucesso"
console.log(teste)
teste = 267.48
console.log(teste)
</script>
</head>
<body>
</body>
</html>