1just append them one by one,
2but you can put all the to-be children in an array and append them in a for loop
1listItem.innerHTML+= listItemCheckbox.outerHTML + listItemLabel.outerHTML + editButton.outerHTML + deleteButton.outerHTML;
2listElement.appendChild(listItem);
3