-
Notifications
You must be signed in to change notification settings - Fork 0
/
number_string.html
executable file
·36 lines (35 loc) · 1.08 KB
/
number_string.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Documento HTML 3</title>
<style>
body{
background-color: orange;
font: 100 arial;
}
h1, p{
color: white;
}
</style>
</head>
<body>
<h1>JavaScript</h1>
<p>Primeiro parágrafo do documento2</p>
<script>
var n1 = Number(window.prompt('digite um número:'))// window.prompt retorna string
var n2 = Number(window.prompt('digite outro número:'))
//função Number converte pra valor numérico
//Number.parseInt() converte pra inteiro
//Number.parseFloat() converte pra float
//String(valor) converte pra string
//valor.toString() converte pra string
var soma = n1 + n2
window.alert(`resultado: ${soma}`)//TEMPLATE STRING
// + serve para adição e concatenação
//`aluno ${nome} de ${idade}
// anos tirou ${nota}` usando template string
</script>
</body>
</html>