I can’t seem to figure out why I keep getting 1st and 3rd row. I am skipping 2nd for some reason. Here’s my code
JavaScript
x
40
40
1
//define books and authors
2
var books = [
3
{ title: "Data Structures and Algorithm Analysis in C++",
4
publisher: "Pearson",
5
authors: [
6
{firstName: "Mark", lastName: "Weiss" }]
7
},
8
9
{ title: "Foundations of Finance",
10
publisher: "Pearson",
11
authors: [
12
{firstName: "Arthur", lastName: "Keown" },
13
{firstName: "John", lastName: "Martin" }]
14
},
15
16
{ title: "Literature for Composition",
17
publisher: "Longman",
18
authors: [
19
{firstName: "Sylvan", lastName: "Barnet" },
20
{firstName: "William", lastName: "Cain" },
21
{firstName: "William", lastName: "Burto" }]
22
}
23
];
24
25
function outputBooks() {
26
for (i=0; i<books.length; i++) {
27
document.write("<h2>" + books[i].title + "</h2>");
28
document.write("<strong>" + books[i].publisher + "</strong>"+ "<br>" + "<br>");
29
outputAuthors(books[i]);
30
}
31
32
33
function outputAuthors(book) {
34
for (i=0; i<book.authors.length; i++) {
35
document.write("Author's Name: ");
36
document.write(book.authors[i].firstName + ' ' + book.authors[i].lastName + "<br>");
37
}
38
}
39
}
40
outputBooks();
JavaScript
1
15
15
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<meta charset="UTF-8">
5
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7
<title>Document</title>
8
</head>
9
<body>
10
<div class="container">
11
<script type="text/javascript" language="javascript" src="ass1_q1.js">
12
</script>
13
</div>
14
</body>
15
</html>
I am trying to write a JS code to display the title of three books with the authors’ names. Is there anything I’m missing?
Advertisement
Answer
I believe the issue is that you are globally defining i
, so outputAuthors is changing the index for outputBooks. This can easily be fixed by changing the code in both for loops to for (let i = 0 ...
so that each scope has it’s own variable i