append chil code example
Example 1: mdn appendchild
// Create a new paragraph element, and append it to the end of the document body
let p = document.createElement("p");
document.body.appendChild(p);
Example 2: how to append in javascript
var list=[1, 2, 3, 4, 5];
list.push(6);
// .push allows you to add a value to the end of a list