arrayToHTMLList
Converts the given array elements into <li>
tags and appends them to the list of the given id.
- Use
Array.prototype.map()
andDocument.querySelector()
to create a list of html tags.
Converts the given array elements into <li>
tags and appends them to the list of the given id.
Array.prototype.map()
and Document.querySelector()
to create a list of html tags.