Update document, window

This commit is contained in:
Isabelle Viktoria Maciohsek
2020-10-20 11:46:23 +03:00
parent 5c344ae3e3
commit 52880f08ee
14 changed files with 16 additions and 16 deletions

View File

@ -5,7 +5,7 @@ tags: browser,array,intermediate
Converts the given array elements into `<li>` tags and appends them to the list of the given id.
- Use `Array.prototype.map()` and `document.querySelector()` to create a list of html tags.
- Use `Array.prototype.map()` and `Document.querySelector()` to create a list of html tags.
```js
const arrayToHTMLList = (arr, listID) =>