how can i check null values in javascript? i wrote bellow code but it didn't worked.
if(pass == null || cpass == null || email == null || cemail == null || user == null)
{
alert("fill all columns");
return false;
}
and how can i find out errors of my program in javascripts?

nullin js should be done with the strict operator===– davin May 14 '11 at 18:19