hide
This method can be used to hide the elements in the collection by setting their display style to "none".
// Hide the elements
hide: function() {
this.elements.forEach(function(element) {
element.style.display = "none";
});
return this;
}