Angular-Check NULL Empty or Undefined

Thanaroj chareonphuthiwat
1 min readJan 25, 2020

--

if(!a) // if a is negative,undefined,null,empty value then...
{
// do whatever
}
else {
// do whatever
}

--

--

No responses yet