append multiple elements javascript code example

Example 1: js array delete specific element

var array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0];
var filtered = array.filter(function(value, index, arr){
    return value > 5;
});
//filtered => [6, 7, 8, 9]
//array => [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]

Example 2: js add multiple element to document

function AppendElements(htmlStringList)
{
  for (let i = 0;i < htmlStringList.length;++i)
  {
    var div = document.createElement('div');
    div.innerHTML = htmlString.trim();

    document.body.appendChild(div);
  }
}