show
This method can be used to show the elements in the collection by removing the display style or setting it to the default value.
// Show the elements
show: function() {
  this.elements.forEach(function(element) {
    element.style.display = "";
  });
  return this;
}