classlist.contains multiple classes code example
Example 1: classlist
// use the classList API to remove and add classes
div.classList.remove("foo");
div.classList.add("anotherclass");
Example 2: .classList
// .classList method returns an array of the classes attached to the element it is called with.
document.getElementById("myDIV").classList
// It returns
// [ 'className1', 'className2', ... ]