-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathexample03.html
36 lines (33 loc) · 937 Bytes
/
example03.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="en">
<head>
<meta charset="utf-8">
<title>Populating an Array with Data</title>
<style>
body {
margin: 1em;
font-size: 1.5em;
}
div {
margin-top: .5em;
}
img {
width: 400px;
}
</style>
</head>
<body>
<div id="output">
</div>
<script>
// Declare the array
const dogPhotos = [];
// Initialize the array values using a loop
for (let counter = 0; counter < 5; counter += 1) {
dogPhotos[counter] = "dog-" + (counter + 1);
}
// Display an example
document.getElementById('output').innerHTML = '<img src="images/' + dogPhotos[0] + '.png" alt="">';
</script>
</body>
</html>