Selection and Manipulation MethodsAddclassaddClass The addClass method adds a class to each element in the collection. // Add a class to the elements addClass: function(className) { this.elements.forEach(function(element) { element.classList.add(className); }); return this; }PrependAttr