Removing of CSS classes in JavaScript

Given an element:

<p id="elem" class="www ggg zzz"></p>

Remove the class www and the class zzz from it.

enru