The following example resets the CSS display property to its defaults, setting the inline style attribute to style="display: initial" if viewed in the developer tools inspector.
js
let myElement = document.getElementById("myElement").attributeStyleMap;
myElement.set("display",newCSSKeywordValue("initial"));
console.log(myElement.get("display").value);// 'initial'