Skip to content

Commit ca9c7e5

Browse files
committed
5_lesson
1 parent 56c0b4d commit ca9c7e5

1 file changed

Lines changed: 7 additions & 10 deletions

File tree

app.js

Lines changed: 7 additions & 10 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+
var books = document.querySelectorAll('#book-list li .name');
92

103
Array.from(books).forEach(function(book){
11-
console.log(book);
12-
})
4+
book.textContent += ' (book title)';
5+
});
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</p>'

0 commit comments

Comments
 (0)