We also want an option of removing all formatting. Inside removeFormat(), code el.classList.remove();.
removeFormat()
el.classList.remove();
Make sure to pick el followed by . and then classList, ., remove, (, ), ;.
el
.
classList
remove
(
)
;