I have below set of code -
if(!obj.Substance){
...Some Code...
}
In this condition Substance variable is of string type.
I want to check on which condition code will enter within if block?
I tried setting Substance value as undefined , blank = empty string also tried to put some value. But code did not entered in if block.