How can assign multiple css classes to an html element through javascript without using any libraries?
Since I could not find this answer nowhere:
ES6 way (Modern Browsers)
el.classList.add("foo", "bar", "baz");