ul in html and inserting items into it from a js code example
Example: append li to ul javascript
function function1() {
var ul = document.getElementById("list");
var li = document.createElement("li");
li.appendChild(document.createTextNode("Four"));
ul.appendChild(li);
}