glClipPlane

Is it possible to have a custom clipping plane that is neither parallel or perpendicular to the viewport?
In OpenGL I would use :

glClipPlane(GL_CLIP_PLANE0, planeEq);
glEnable(GL_CLIP_PLANE0);

Is there an equivalent in webGL or a way to acheive the same result?

Thanks for your help.