The clear() method of the StylePropertyMap interface removes all declarations in the StylePropertyMap.
clear()None.
None (undefined).
The following example removes all styles within the elements style attribute.
// get the button element
const buttonEl = document.querySelector(".example");
// remove all styles from the style attribute
buttonEl.attributeStyleMap.clear();