-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexercicios5.html
More file actions
45 lines (32 loc) · 853 Bytes
/
exercicios5.html
File metadata and controls
45 lines (32 loc) · 853 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Ordenação de elementos no Array</title>
<script>
var objetos = Array('Cadeira', 'Impressora', 'Garfo')
function adiciona(){
var elemento = document.getElementById('campo_texto').value
if(elemento != ''){
if(objetos.indexOf(elemento) !== -1) {
alert('Objeto já foi adicionado.')
}else {
objetos.push(elemento)
console.log(objetos)
}
} else{
alert('Informe um objeto válido.')
}
}
function ordena() {
objetos.sort()
console.log(objetos)
}
</script>
</head>
<body>
<input id="campo_texto" type="text" />
<button onclick="adiciona()" type="button">Adicionar</button>
<button onclick="ordena()" type="button">Ordenar</button>
</body>
</html>