css style p in class code example
Example 1: css class list
var myElement = document.getElementById("myElementID");
myElement.classList.add("style1 style2");
myElement.classList.remove("style1 style2");
Example 2: javascript span style
//an example of an "out of context" way to change color of a text:
<span style="color: green"></span>