Skip to content

Commit 09f08a4

Browse files
committed
lesson 4
1 parent 269bba5 commit 09f08a4

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

app.js

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
const books = document.querySelectorAll('#book-list li .name');
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);
29

310
Array.from(books).forEach(function(book){
4-
book.textContent += ' (Book title)';
11+
console.log(book);
512
});
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)