Skip to content

Commit 7a7e85b

Browse files
authored
Rename bookTitles to bookIDs
This will hopefully make it more clear that the entries in this array should be used as the keys in the object.
1 parent 513ace2 commit 7a7e85b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Week1/homework/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
'use strict';
22

33
{
4-
const bookTitles = [
4+
const bookIDs = [
55
// Replace with your own book titles
66
'harry_potter_chamber_secrets',
77
];
88

99
// Replace with your own code
10-
console.log(bookTitles);
10+
console.log(bookIDs);
1111
}

0 commit comments

Comments
 (0)