Say
a=""; // empty String
b=0;
then
a==b; // returns true
What Test could I build to return true only if I compare two empty strings or two zero's?
Say
a=""; // empty String
b=0;
then
a==b; // returns true
What Test could I build to return true only if I compare two empty strings or two zero's?