How to stop execution of function in javascript?
Please see below code:
if(m=='')
{
alert("novalue");
getDate().stopPropagation();
}
I want that if(m==null) the getDate() should not get executed.
How this can get achieved in javascript?
if?===instead of==?