-
Notifications
You must be signed in to change notification settings - Fork 0
/
array.html
35 lines (27 loc) · 891 Bytes
/
array.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
</head>
<body>
<script>
let nomes = new Array();
nomes.push('João');
nomes.push('Maria');
nomes.push('José');
nomes.unshift('Amanda');
nomes[10] = 'Pedro';
document.write(`Tamanho do array: ${nomes.length}`);
document.write('</br>');
document.write(`Nome na primeira posição: ${nomes[0]}`);
document.write('</br>');
document.write('Nome na última posição: ' + nomes[nomes.length - 1]);
for (let indice = 0; indice < nomes.length; indice++)
{
if (nomes[indice] != undefined) {
document.write(`<p>${nomes[indice]}</p>`);
}
}
</script>
</body>
</html>