// Removes a classfromallofthematchednodesu.prototype.removeClass = function () {
// Loop the combination of each node with each argument
return this.eacharg(arguments, function (el, name) {
// Remove the classusingthenativemethodel.classList.remove(name);
});
};