Skip to content

Commit aa36d97

Browse files
Shaun PellingShaun Pelling
authored andcommitted
lesson 5 code
1 parent 4fe3b43 commit aa36d97

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

app.js

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
const wmf = document.querySelector('#book-list li:nth-child(2) .name');
2-
console.log(wmf);
3-
4-
var books = document.querySelector('#book-list li .name');
5-
console.log(books);
6-
7-
books = document.querySelectorAll('#book-list li .name');
8-
console.log(books);
1+
const books = document.querySelectorAll('#book-list li .name');
92

103
Array.from(books).forEach(function(book){
11-
console.log(book);
4+
book.textContent += ' (Book title)';
125
});
6+
7+
const bookList = document.querySelector('#book-list');
8+
bookList.innerHTML = '<h2>Books and more books...</h2>';
9+
bookList.innerHTML += '<p>This is how you add HTML content</p>';

0 commit comments

Comments
 (0)