js check if class has property code example
Example 1: javascript check if element has class
if(document.getElementById("myElmentID").classList.contains("hidden")){
// I have the 'hidden' class
}
Example 2: check if js property exists in class
myObj.hasOwnProperty(myProp)